generator-code 1.6.4 → 1.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generators/app/{generate-command-ts .js → generate-command-ts.js} +0 -0
- package/generators/app/index.js +1 -1
- package/generators/app/package.json +1 -0
- package/generators/app/templates/ext-command-ts/package.json +1 -1
- package/generators/app/templates/ext-command-ts/vscode-webpack/package.json +1 -1
- package/generators/app/templates/ext-command-ts/vscode-webpack/vsc-extension-quickstart.md +4 -4
- package/generators/app/templates/ext-notebook-renderer/package.json +1 -0
- package/generators/app/templates/ext-notebook-renderer/webpack.config.js +4 -0
- package/package.json +4 -3
|
File without changes
|
package/generators/app/index.js
CHANGED
|
@@ -12,7 +12,7 @@ const witch = require('which');
|
|
|
12
12
|
|
|
13
13
|
const colortheme = require('./generate-colortheme');
|
|
14
14
|
const commandjs = require('./generate-command-js');
|
|
15
|
-
const commandts = require('./generate-command-ts
|
|
15
|
+
const commandts = require('./generate-command-ts');
|
|
16
16
|
const commandweb = require('./generate-command-web');
|
|
17
17
|
const extensionpack = require('./generate-extensionpack');
|
|
18
18
|
const keymap = require('./generate-keymap');
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
## Setup
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
* install the recommended extensions (amodio.tsl-problem-matcher and dbaeumer.vscode-eslint)
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
## Get up and running straight away
|
|
@@ -42,6 +42,6 @@
|
|
|
42
42
|
|
|
43
43
|
## Go further
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
* Reduce the extension size and improve the startup time by [bundling your extension](https://code.visualstudio.com/api/working-with-extensions/bundling-extension).
|
|
46
|
+
* [Publish your extension](https://code.visualstudio.com/api/working-with-extensions/publishing-extension) on the VSCode extension marketplace.
|
|
47
|
+
* Automate builds by setting up [Continuous Integration](https://code.visualstudio.com/api/working-with-extensions/continuous-integration).
|
|
@@ -14,8 +14,12 @@ const makeConfig = (argv, { entry, out, target, library = 'commonjs' }) => ({
|
|
|
14
14
|
libraryTarget: library,
|
|
15
15
|
chunkFormat: library,
|
|
16
16
|
},
|
|
17
|
+
externals: {
|
|
18
|
+
vscode: 'commonjs vscode',
|
|
19
|
+
},
|
|
17
20
|
resolve: {
|
|
18
21
|
extensions: ['.ts', '.tsx', '.js', '.jsx', '.css'],
|
|
22
|
+
fallback: { "util": require.resolve("util/") }
|
|
19
23
|
},
|
|
20
24
|
experiments: {
|
|
21
25
|
outputModule: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generator-code",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.5",
|
|
4
4
|
"description": "Yeoman generator for Visual Studio Code Extensions",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yeoman-generator",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"chalk": "^4.1.2",
|
|
38
38
|
"fast-plist": "^0.1.2",
|
|
39
|
-
"request-light": "^0.5.
|
|
39
|
+
"request-light": "^0.5.5",
|
|
40
40
|
"sanitize-filename": "^1.6.3",
|
|
41
41
|
"which": "^2.0.2",
|
|
42
42
|
"yeoman-generator": "^5.4.2",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"@types/yeoman-test": "^4.0.3",
|
|
50
50
|
"mocha": "^9.1.3",
|
|
51
51
|
"yeoman-test": "^6.2.0",
|
|
52
|
-
"yeoman-environment": "^3.
|
|
52
|
+
"yeoman-environment": "^3.8.1",
|
|
53
|
+
"json-schema": ">=0.4.0"
|
|
53
54
|
}
|
|
54
55
|
}
|