diff options
-rw-r--r-- | editors/code/package-lock.json | 14 | ||||
-rw-r--r-- | editors/code/package.json | 2 | ||||
-rw-r--r-- | editors/code/rollup.config.js | 3 |
3 files changed, 9 insertions, 10 deletions
diff --git a/editors/code/package-lock.json b/editors/code/package-lock.json index 6655afb32..0b7321245 100644 --- a/editors/code/package-lock.json +++ b/editors/code/package-lock.json | |||
@@ -31,9 +31,9 @@ | |||
31 | } | 31 | } |
32 | }, | 32 | }, |
33 | "@rollup/plugin-commonjs": { | 33 | "@rollup/plugin-commonjs": { |
34 | "version": "12.0.0", | 34 | "version": "13.0.0", |
35 | "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-12.0.0.tgz", | 35 | "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-13.0.0.tgz", |
36 | "integrity": "sha512-8+mDQt1QUmN+4Y9D3yCG8AJNewuTSLYPJVzKKUZ+lGeQrI+bV12Tc5HCyt2WdlnG6ihIL/DPbKRJlB40DX40mw==", | 36 | "integrity": "sha512-Anxc3qgkAi7peAyesTqGYidG5GRim9jtg8xhmykNaZkImtvjA7Wsqep08D2mYsqw1IF7rA3lYfciLgzUSgRoqw==", |
37 | "dev": true, | 37 | "dev": true, |
38 | "requires": { | 38 | "requires": { |
39 | "@rollup/pluginutils": "^3.0.8", | 39 | "@rollup/pluginutils": "^3.0.8", |
@@ -1356,12 +1356,12 @@ | |||
1356 | "dev": true | 1356 | "dev": true |
1357 | }, | 1357 | }, |
1358 | "is-reference": { | 1358 | "is-reference": { |
1359 | "version": "1.1.4", | 1359 | "version": "1.2.1", |
1360 | "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.1.4.tgz", | 1360 | "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", |
1361 | "integrity": "sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw==", | 1361 | "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", |
1362 | "dev": true, | 1362 | "dev": true, |
1363 | "requires": { | 1363 | "requires": { |
1364 | "@types/estree": "0.0.39" | 1364 | "@types/estree": "*" |
1365 | } | 1365 | } |
1366 | }, | 1366 | }, |
1367 | "is-regex": { | 1367 | "is-regex": { |
diff --git a/editors/code/package.json b/editors/code/package.json index 1d38c5bfd..085e7b6d2 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -39,7 +39,7 @@ | |||
39 | "vscode-languageclient": "7.0.0-next.1" | 39 | "vscode-languageclient": "7.0.0-next.1" |
40 | }, | 40 | }, |
41 | "devDependencies": { | 41 | "devDependencies": { |
42 | "@rollup/plugin-commonjs": "^12.0.0", | 42 | "@rollup/plugin-commonjs": "^13.0.0", |
43 | "@rollup/plugin-node-resolve": "^8.1.0", | 43 | "@rollup/plugin-node-resolve": "^8.1.0", |
44 | "@types/glob": "^7.1.2", | 44 | "@types/glob": "^7.1.2", |
45 | "@types/mocha": "^7.0.2", | 45 | "@types/mocha": "^7.0.2", |
diff --git a/editors/code/rollup.config.js b/editors/code/rollup.config.js index 4b4c47f4a..27abf75ac 100644 --- a/editors/code/rollup.config.js +++ b/editors/code/rollup.config.js | |||
@@ -16,7 +16,6 @@ export default { | |||
16 | external: [...nodeBuiltins, 'vscode'], | 16 | external: [...nodeBuiltins, 'vscode'], |
17 | output: { | 17 | output: { |
18 | file: './out/src/main.js', | 18 | file: './out/src/main.js', |
19 | format: 'cjs', | 19 | format: 'cjs' |
20 | exports: 'named' | ||
21 | } | 20 | } |
22 | }; | 21 | }; |