create-powerapps-project 0.27.2 → 0.28.1
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/lib/index.js +27 -27
- package/lib/nuget.js +41 -41
- package/lib/packageManager.js +22 -22
- package/lib/plopActions.js +102 -102
- package/lib/plopfile.js +448 -436
- package/package.json +4 -1
- package/plop-templates/assembly/{.editorconfig → .editorconfig.hbs} +131 -131
- package/plop-templates/assembly/.gitignore.hbs +362 -0
- package/plop-templates/assembly/builderSettings.json +17 -17
- package/plop-templates/webresource/{.eslintignore → .eslintignore.hbs} +11 -11
- package/plop-templates/webresource/.gitignore.hbs +43 -0
- package/plop-templates/webresource/.prettierrc.json +4 -4
- /package/plop-templates/assembly/{.gitattributes → .gitattributes.hbs} +0 -0
- /package/plop-templates/pcf/{.gitattributes → .gitattributes.hbs} +0 -0
- /package/plop-templates/webresource/{.gitattributes → .gitattributes.hbs} +0 -0
- /package/plop-templates/webresource/{.prettierignore → .prettierignore.hbs} +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# don't ever lint node_modules
|
|
2
|
-
node_modules
|
|
3
|
-
# don't lint build output
|
|
4
|
-
dist
|
|
5
|
-
lib
|
|
6
|
-
# don't lint nyc coverage output
|
|
7
|
-
coverage
|
|
8
|
-
# don't lint various configs
|
|
9
|
-
just.config.js
|
|
10
|
-
webpack.config.js
|
|
11
|
-
.eslintrc.js
|
|
1
|
+
# don't ever lint node_modules
|
|
2
|
+
node_modules
|
|
3
|
+
# don't lint build output
|
|
4
|
+
dist
|
|
5
|
+
lib
|
|
6
|
+
# don't lint nyc coverage output
|
|
7
|
+
coverage
|
|
8
|
+
# don't lint various configs
|
|
9
|
+
just.config.js
|
|
10
|
+
webpack.config.js
|
|
11
|
+
.eslintrc.js
|
|
12
12
|
plopfile.js
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Logs
|
|
2
|
+
logs
|
|
3
|
+
*.log
|
|
4
|
+
npm-debug.log*
|
|
5
|
+
|
|
6
|
+
# Runtime data
|
|
7
|
+
pids
|
|
8
|
+
*.pid
|
|
9
|
+
*.seed
|
|
10
|
+
|
|
11
|
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
12
|
+
lib-cov
|
|
13
|
+
|
|
14
|
+
# Coverage directory used by tools like istanbul
|
|
15
|
+
coverage
|
|
16
|
+
|
|
17
|
+
# nyc test coverage
|
|
18
|
+
.nyc_output
|
|
19
|
+
|
|
20
|
+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
21
|
+
.grunt
|
|
22
|
+
|
|
23
|
+
# node-waf configuration
|
|
24
|
+
.lock-wscript
|
|
25
|
+
|
|
26
|
+
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
|
27
|
+
build/Release
|
|
28
|
+
|
|
29
|
+
# Dependency directories
|
|
30
|
+
node_modules
|
|
31
|
+
jspm_packages
|
|
32
|
+
|
|
33
|
+
# Optional npm cache directory
|
|
34
|
+
.npm
|
|
35
|
+
|
|
36
|
+
# Optional REPL history
|
|
37
|
+
.node_repl_history
|
|
38
|
+
|
|
39
|
+
# VSCode
|
|
40
|
+
.vscode
|
|
41
|
+
|
|
42
|
+
# lib folder
|
|
43
|
+
lib/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
{
|
|
2
|
-
"trailingComma": "none",
|
|
3
|
-
"singleQuote": true,
|
|
4
|
-
"printWidth": 140
|
|
1
|
+
{
|
|
2
|
+
"trailingComma": "none",
|
|
3
|
+
"singleQuote": true,
|
|
4
|
+
"printWidth": 140
|
|
5
5
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|