Skip to content

Monaco 0.11 #647

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 54 commits into from
Jul 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
5dd3c09
Monaco v11
Mar 17, 2018
3852a0f
Merge branch 'master' into monaco-v11
Jul 9, 2018
1cbb121
tokenize
Jul 9, 2018
d45536c
Add more themes
Jul 9, 2018
7e33029
Hi (#952)
SaraVieira Jul 9, 2018
a89d5e6
Progress
Jul 10, 2018
794c79d
Push!
Jul 10, 2018
0197dea
Fixes
Jul 10, 2018
c9bf06e
Fix referencing
Jul 10, 2018
6db1a6f
Fix
Jul 10, 2018
ec984f7
Revert 2 files
Jul 10, 2018
c6a7cb5
Console log cleanup
Jul 10, 2018
0acd98e
More stuff
Jul 11, 2018
2217f81
Fix Lint
Jul 11, 2018
cf2cb03
Fix another lint
Jul 11, 2018
0e1ac72
Huh
Jul 11, 2018
7fc97aa
Add monaco editor
Jul 11, 2018
b4d50d0
Finally fix LRU cache problem
Jul 11, 2018
035272a
Add comment
Jul 11, 2018
6768553
Fix loading other modes than javascript
Jul 11, 2018
a343812
Theme picker and fixes
Jul 12, 2018
0f28f78
Add more info
Jul 12, 2018
26dd566
fix lint
Jul 12, 2018
f040574
Fix codesandbox colors
Jul 12, 2018
a2d1f2d
Fix CodeSandbox theme
Jul 12, 2018
10198b2
More
Jul 12, 2018
c96ca40
Fix
Jul 12, 2018
c597baf
Add stuff
Jul 12, 2018
c480dfc
Add notification for theming
Jul 12, 2018
c340dfe
Remove unused import
Jul 12, 2018
253d014
Fix reopening modules fast
Jul 12, 2018
f4bb3a8
Remove log statement
Jul 12, 2018
6d192a0
Fix code changing in the background for Monaco
Jul 12, 2018
65a00b5
Make doc swapping async
Jul 13, 2018
cd1a556
Make pendingOperation multiplied
Jul 13, 2018
14c1064
Fix lint bug
CompuIves Jul 13, 2018
f8cf938
Fix more lints
CompuIves Jul 13, 2018
9786ea6
Fixes
CompuIves Jul 13, 2018
667009b
Fix live
CompuIves Jul 14, 2018
d8ced3f
Fix lint
CompuIves Jul 14, 2018
28afb33
Fix live module async switching
CompuIves Jul 14, 2018
c85e1f9
Fix switching
CompuIves Jul 15, 2018
5a9f7ae
Fix value checks
Jul 15, 2018
c3a48ab
Force CircleCI
Jul 15, 2018
dc5e5ef
Show error frames for syntax errors
Jul 15, 2018
bc04957
Fix editor states
Jul 15, 2018
fe25dd0
Always include the commonjs babel plugin
Jul 15, 2018
0fb3702
Fix save all modules prettify in live
Jul 15, 2018
311218a
Fix transform sending
Jul 15, 2018
253c6d0
Don't allow editor changes to be sent
CompuIves Jul 15, 2018
8b969bd
Merge branch 'master' into monaco-v11
Jul 15, 2018
344b058
Support hc themes
Jul 16, 2018
fd1dd86
Add HC theme as default
Jul 16, 2018
f0432ec
Host dank ourselves
Jul 16, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 1 addition & 2 deletions packages/app/config/babel.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
'env',
{
targets: {
ie: 11,
chrome: 67,
// We currently minify with uglify
// Remove after https://github.com/mishoo/UglifyJS2/issues/448
uglify: true,
Expand All @@ -24,7 +24,6 @@ module.exports = {
'react',
],
plugins: [
require.resolve('babel-plugin-transform-async-to-generator'),
require.resolve('babel-plugin-transform-object-rest-spread'),
require.resolve('babel-plugin-transform-class-properties'),
require.resolve('babel-plugin-transform-runtime'),
Expand Down
Loading