generator-code 1.6.13 → 1.6.14

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.
@@ -85,7 +85,7 @@ module.exports = {
85
85
  generator.fs.copyTpl(generator.templatePath('CHANGELOG.md'), generator.destinationPath('CHANGELOG.md'), extensionConfig);
86
86
  generator.fs.copy(generator.templatePath('.vscodeignore'), generator.destinationPath('.vscodeignore'));
87
87
  if (extensionConfig.gitInit) {
88
- generator.fs.copy(generator.templatePath('.gitignore'), generator.destinationPath('.gitignore'));
88
+ generator.fs.copy(generator.templatePath('gitignore'), generator.destinationPath('.gitignore'));
89
89
  generator.fs.copy(generator.templatePath('.gitattributes'), generator.destinationPath('.gitattributes'));
90
90
  }
91
91
  }
@@ -42,7 +42,7 @@ module.exports = {
42
42
  generator.fs.copy(generator.templatePath('.vscodeignore'), generator.destinationPath('.vscodeignore'));
43
43
 
44
44
  if (extensionConfig.gitInit) {
45
- generator.fs.copy(generator.templatePath('.gitignore'), generator.destinationPath('.gitignore'));
45
+ generator.fs.copy(generator.templatePath('gitignore'), generator.destinationPath('.gitignore'));
46
46
  }
47
47
 
48
48
  generator.fs.copyTpl(generator.templatePath('README.md'), generator.destinationPath('README.md'), extensionConfig);
@@ -44,7 +44,7 @@ module.exports = {
44
44
  }
45
45
 
46
46
  if (extensionConfig.gitInit) {
47
- generator.fs.copy(generator.templatePath('.gitignore'), generator.destinationPath('.gitignore'));
47
+ generator.fs.copy(generator.templatePath('gitignore'), generator.destinationPath('.gitignore'));
48
48
  }
49
49
  generator.fs.copyTpl(generator.templatePath('README.md'), generator.destinationPath('README.md'), extensionConfig);
50
50
  generator.fs.copyTpl(generator.templatePath('CHANGELOG.md'), generator.destinationPath('CHANGELOG.md'), extensionConfig);
@@ -31,7 +31,7 @@ module.exports = {
31
31
 
32
32
  generator.fs.copy(generator.templatePath('.vscodeignore'), generator.destinationPath('.vscodeignore'));
33
33
  if (extensionConfig.gitInit) {
34
- generator.fs.copy(generator.templatePath('.gitignore'), generator.destinationPath('.gitignore'));
34
+ generator.fs.copy(generator.templatePath('gitignore'), generator.destinationPath('.gitignore'));
35
35
  }
36
36
  generator.fs.copyTpl(generator.templatePath('README.md'), generator.destinationPath('README.md'), extensionConfig);
37
37
  generator.fs.copyTpl(generator.templatePath('CHANGELOG.md'), generator.destinationPath('CHANGELOG.md'), extensionConfig);
@@ -35,7 +35,7 @@ module.exports = {
35
35
  generator.fs.copyTpl(generator.templatePath('CHANGELOG.md'), generator.destinationPath('CHANGELOG.md'), extensionConfig);
36
36
  generator.fs.copy(generator.templatePath('.vscodeignore'), generator.destinationPath('.vscodeignore'));
37
37
  if (extensionConfig.gitInit) {
38
- generator.fs.copy(generator.templatePath('.gitignore'), generator.destinationPath('.gitignore'));
38
+ generator.fs.copy(generator.templatePath('gitignore'), generator.destinationPath('.gitignore'));
39
39
  generator.fs.copy(generator.templatePath('.gitattributes'), generator.destinationPath('.gitattributes'));
40
40
  }
41
41
  }
@@ -31,7 +31,7 @@ module.exports = {
31
31
  generator.fs.copyTpl(generator.templatePath('CHANGELOG.md'), generator.destinationPath('CHANGELOG.md'), extensionConfig);
32
32
  generator.fs.copy(generator.templatePath('.vscodeignore'), generator.destinationPath('.vscodeignore'));
33
33
  if (extensionConfig.gitInit) {
34
- generator.fs.copy(generator.templatePath('.gitignore'), generator.destinationPath('.gitignore'));
34
+ generator.fs.copy(generator.templatePath('gitignore'), generator.destinationPath('.gitignore'));
35
35
  generator.fs.copy(generator.templatePath('.gitattributes'), generator.destinationPath('.gitattributes'));
36
36
  }
37
37
  }
@@ -53,7 +53,7 @@ module.exports = {
53
53
  generator.fs.copyTpl(generator.templatePath('language-configuration.json'), generator.destinationPath('language-configuration.json'), extensionConfig);
54
54
  generator.fs.copy(generator.templatePath('.vscodeignore'), generator.destinationPath('.vscodeignore'));
55
55
  if (extensionConfig.gitInit) {
56
- generator.fs.copy(generator.templatePath('.gitignore'), generator.destinationPath('.gitignore'));
56
+ generator.fs.copy(generator.templatePath('gitignore'), generator.destinationPath('.gitignore'));
57
57
  generator.fs.copy(generator.templatePath('.gitattributes'), generator.destinationPath('.gitattributes'));
58
58
  }
59
59
  }
@@ -35,7 +35,7 @@ module.exports = {
35
35
  generator.fs.copyTpl(generator.templatePath('README.md'), generator.destinationPath('README.md'), extensionConfig);
36
36
  generator.fs.copyTpl(generator.templatePath('CHANGELOG.md'), generator.destinationPath('CHANGELOG.md'), extensionConfig);
37
37
  generator.fs.copy(generator.templatePath('.vscodeignore'), generator.destinationPath('.vscodeignore'));
38
- generator.fs.copy(generator.templatePath('.gitignore'), generator.destinationPath('.gitignore'));
38
+ generator.fs.copy(generator.templatePath('gitignore'), generator.destinationPath('.gitignore'));
39
39
  generator.fs.copy(generator.templatePath('.gitattributes'), generator.destinationPath('.gitattributes'));
40
40
 
41
41
  if (extensionConfig.pkgManager === 'yarn') {
@@ -45,7 +45,7 @@ module.exports = {
45
45
  generator.fs.copyTpl(generator.templatePath('src/extension/extension.ts'), generator.destinationPath('src/extension/extension.ts'), extensionConfig);
46
46
 
47
47
  if (extensionConfig.gitInit) {
48
- generator.fs.copy(generator.templatePath('.gitignore'), generator.destinationPath('.gitignore'));
48
+ generator.fs.copy(generator.templatePath('gitignore'), generator.destinationPath('.gitignore'));
49
49
  generator.fs.copy(generator.templatePath('.gitattributes'), generator.destinationPath('.gitattributes'));
50
50
  }
51
51
 
@@ -39,7 +39,7 @@ module.exports = {
39
39
  generator.fs.copyTpl(generator.templatePath('snippets/snippets.code-snippets'), generator.destinationPath('snippets/snippets.code-snippets'), extensionConfig);
40
40
  generator.fs.copy(generator.templatePath('.vscodeignore'), generator.destinationPath('.vscodeignore'));
41
41
  if (extensionConfig.gitInit) {
42
- generator.fs.copy(generator.templatePath('.gitignore'), generator.destinationPath('.gitignore'));
42
+ generator.fs.copy(generator.templatePath('gitignore'), generator.destinationPath('.gitignore'));
43
43
  generator.fs.copy(generator.templatePath('.gitattributes'), generator.destinationPath('.gitattributes'));
44
44
  }
45
45
  }
@@ -0,0 +1,2 @@
1
+ node_modules
2
+ *.vsix
@@ -0,0 +1,3 @@
1
+ node_modules
2
+ .vscode-test/
3
+ *.vsix
@@ -0,0 +1,5 @@
1
+ out
2
+ dist
3
+ node_modules
4
+ .vscode-test/
5
+ *.vsix
@@ -0,0 +1,5 @@
1
+ out
2
+ dist
3
+ node_modules
4
+ .vscode-test-web/
5
+ *.vsix
@@ -0,0 +1,2 @@
1
+ node_modules
2
+ *.vsix
@@ -0,0 +1,2 @@
1
+ node_modules
2
+ *.vsix
@@ -0,0 +1,2 @@
1
+ node_modules
2
+ *.vsix
@@ -0,0 +1,2 @@
1
+ node_modules
2
+ *.vsix
@@ -0,0 +1,4 @@
1
+ out
2
+ node_modules
3
+ .vscode-test/
4
+ *.vsix
@@ -0,0 +1,2 @@
1
+ node_modules
2
+ *.vsix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generator-code",
3
- "version": "1.6.13",
3
+ "version": "1.6.14",
4
4
  "description": "Yeoman generator for Visual Studio Code extensions.",
5
5
  "keywords": [
6
6
  "yeoman-generator",