create-powerapps-project 0.28.0 → 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.
@@ -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
  }