create-sitecore-jss 22.2.0-canary.57 → 22.2.0-canary.59

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.
@@ -9,10 +9,15 @@ scjssconfig.json
9
9
  /dist-server
10
10
  /tmp
11
11
  /out-tsc
12
+ /.angular
12
13
 
13
14
  # dependencies
14
15
  /node_modules
15
16
 
17
+ # local env files
18
+ .env.local
19
+ .env.*.local
20
+
16
21
  # IDEs and editors
17
22
  /.idea
18
23
  .project
@@ -1 +1,2 @@
1
- *.ts
1
+ *
2
+ !.gitignore
@@ -0,0 +1,19 @@
1
+ # See http://help.github.com/ignore-files/ for more about ignoring files.
2
+
3
+ # dependencies
4
+ /node_modules
5
+
6
+ # local env files
7
+ .env.local
8
+ .env.*.local
9
+
10
+ # IDE - VSCode
11
+ .vscode/*
12
+ !.vscode/settings.json
13
+ !.vscode/tasks.json
14
+ !.vscode/launch.json
15
+ !.vscode/extensions.json
16
+
17
+ # System Files
18
+ .DS_Store
19
+ Thumbs.db
@@ -0,0 +1,19 @@
1
+ # See http://help.github.com/ignore-files/ for more about ignoring files.
2
+
3
+ # dependencies
4
+ /node_modules
5
+
6
+ # local env files
7
+ .env.local
8
+ .env.*.local
9
+
10
+ # IDE - VSCode
11
+ .vscode/*
12
+ !.vscode/settings.json
13
+ !.vscode/tasks.json
14
+ !.vscode/launch.json
15
+ !.vscode/extensions.json
16
+
17
+ # System Files
18
+ .DS_Store
19
+ Thumbs.db
@@ -0,0 +1,33 @@
1
+ # See http://help.github.com/ignore-files/ for more about ignoring files.
2
+
3
+ # compiled output
4
+ /dist
5
+
6
+ # dependencies
7
+ /node_modules
8
+
9
+ # local env files
10
+ .env.local
11
+ .env.*.local
12
+
13
+ # IDE - VSCode
14
+ .vscode/*
15
+ !.vscode/settings.json
16
+ !.vscode/tasks.json
17
+ !.vscode/launch.json
18
+ !.vscode/extensions.json
19
+
20
+ # misc
21
+ /connect.lock
22
+ /libpeerconnection.log
23
+ npm-debug.log
24
+ testem.log
25
+ /typings
26
+
27
+ # System Files
28
+ .DS_Store
29
+ Thumbs.db
30
+
31
+ # deploy platforms
32
+ .vercel
33
+ .netlify
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-sitecore-jss",
3
- "version": "22.2.0-canary.57",
3
+ "version": "22.2.0-canary.59",
4
4
  "description": "Sitecore JSS initializer",
5
5
  "bin": "./dist/index.js",
6
6
  "scripts": {
@@ -63,5 +63,5 @@
63
63
  "ts-node": "^10.9.1",
64
64
  "typescript": "~4.9.5"
65
65
  },
66
- "gitHead": "b0e10697a51c57017c5494452bc136f86787726e"
66
+ "gitHead": "85de05b326b79bfc18767193e3792f6459000eef"
67
67
  }