create-zerotal 1.13.1 → 1.13.3
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/package.json
CHANGED
package/src/scaffold.ts
CHANGED
|
@@ -13,7 +13,7 @@ export type Template = 'minimal' | 'api' | 'admin' | 'flow' | 'react' | 'vue';
|
|
|
13
13
|
// "^1.1.0" found for specifier "zerotal"` — the first thing anyone trying the
|
|
14
14
|
// framework saw. `scaffold.test.ts` now asserts the two agree, so CI fails rather
|
|
15
15
|
// than the user's install.
|
|
16
|
-
export const ZT_VERSION = "^1.13.
|
|
16
|
+
export const ZT_VERSION = "^1.13.3";
|
|
17
17
|
|
|
18
18
|
export interface ScaffoldOptions {
|
|
19
19
|
name: string;
|
|
@@ -5,3 +5,12 @@ node_modules/
|
|
|
5
5
|
# have not been checkpointed into the main file yet — real ones.
|
|
6
6
|
*.sqlite*
|
|
7
7
|
.env
|
|
8
|
+
|
|
9
|
+
# The site gate's state — never committed.
|
|
10
|
+
#
|
|
11
|
+
# This is the whole reason the feature exists in the app rather than in a reverse
|
|
12
|
+
# proxy: a gate held in version control is one that gets deployed and forgotten,
|
|
13
|
+
# and quietly password-protects a live site at launch. It is per-environment
|
|
14
|
+
# state, like a log, not configuration.
|
|
15
|
+
storage/framework/gate.json
|
|
16
|
+
**/storage/framework/gate.json
|
package/templates/api/_gitignore
CHANGED
|
@@ -6,3 +6,12 @@ node_modules/
|
|
|
6
6
|
*.sqlite*
|
|
7
7
|
.env
|
|
8
8
|
public/assets/
|
|
9
|
+
|
|
10
|
+
# The site gate's state — never committed.
|
|
11
|
+
#
|
|
12
|
+
# This is the whole reason the feature exists in the app rather than in a reverse
|
|
13
|
+
# proxy: a gate held in version control is one that gets deployed and forgotten,
|
|
14
|
+
# and quietly password-protects a live site at launch. It is per-environment
|
|
15
|
+
# state, like a log, not configuration.
|
|
16
|
+
storage/framework/gate.json
|
|
17
|
+
**/storage/framework/gate.json
|
|
@@ -7,3 +7,12 @@ node_modules/
|
|
|
7
7
|
.env
|
|
8
8
|
public/app.js
|
|
9
9
|
public/app.css
|
|
10
|
+
|
|
11
|
+
# The site gate's state — never committed.
|
|
12
|
+
#
|
|
13
|
+
# This is the whole reason the feature exists in the app rather than in a reverse
|
|
14
|
+
# proxy: a gate held in version control is one that gets deployed and forgotten,
|
|
15
|
+
# and quietly password-protects a live site at launch. It is per-environment
|
|
16
|
+
# state, like a log, not configuration.
|
|
17
|
+
storage/framework/gate.json
|
|
18
|
+
**/storage/framework/gate.json
|
|
@@ -7,3 +7,12 @@ node_modules/
|
|
|
7
7
|
.env
|
|
8
8
|
public/app.js
|
|
9
9
|
public/app.css
|
|
10
|
+
|
|
11
|
+
# The site gate's state — never committed.
|
|
12
|
+
#
|
|
13
|
+
# This is the whole reason the feature exists in the app rather than in a reverse
|
|
14
|
+
# proxy: a gate held in version control is one that gets deployed and forgotten,
|
|
15
|
+
# and quietly password-protects a live site at launch. It is per-environment
|
|
16
|
+
# state, like a log, not configuration.
|
|
17
|
+
storage/framework/gate.json
|
|
18
|
+
**/storage/framework/gate.json
|
|
@@ -6,3 +6,12 @@ node_modules/
|
|
|
6
6
|
*.sqlite*
|
|
7
7
|
.env
|
|
8
8
|
public/assets/
|
|
9
|
+
|
|
10
|
+
# The site gate's state — never committed.
|
|
11
|
+
#
|
|
12
|
+
# This is the whole reason the feature exists in the app rather than in a reverse
|
|
13
|
+
# proxy: a gate held in version control is one that gets deployed and forgotten,
|
|
14
|
+
# and quietly password-protects a live site at launch. It is per-environment
|
|
15
|
+
# state, like a log, not configuration.
|
|
16
|
+
storage/framework/gate.json
|
|
17
|
+
**/storage/framework/gate.json
|
package/templates/vue/_gitignore
CHANGED
|
@@ -6,3 +6,12 @@ node_modules/
|
|
|
6
6
|
*.sqlite*
|
|
7
7
|
.env
|
|
8
8
|
public/assets/
|
|
9
|
+
|
|
10
|
+
# The site gate's state — never committed.
|
|
11
|
+
#
|
|
12
|
+
# This is the whole reason the feature exists in the app rather than in a reverse
|
|
13
|
+
# proxy: a gate held in version control is one that gets deployed and forgotten,
|
|
14
|
+
# and quietly password-protects a live site at launch. It is per-environment
|
|
15
|
+
# state, like a log, not configuration.
|
|
16
|
+
storage/framework/gate.json
|
|
17
|
+
**/storage/framework/gate.json
|