@outwalk/create-firefly 0.9.2 → 0.10.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/package.json +4 -4
- package/templates/javascript/README.md.template +3 -0
- package/templates/javascript/eslint.config.js.template +7 -0
- package/templates/javascript/package.json.template +2 -0
- package/templates/typescript/README.md.template +3 -0
- package/templates/typescript/eslint.config.js.template +7 -0
- package/templates/typescript/package.json.template +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outwalk/create-firefly",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "Firefly - a modern scalable web framework.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"@rollup/plugin-json": "^6.1.0",
|
|
50
50
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
51
51
|
"esbuild": "^0.25.0",
|
|
52
|
-
"eslint": "^9.20.
|
|
53
|
-
"globals": "^
|
|
54
|
-
"rollup": "^4.34.
|
|
52
|
+
"eslint": "^9.20.1",
|
|
53
|
+
"globals": "^16.0.0",
|
|
54
|
+
"rollup": "^4.34.8",
|
|
55
55
|
"rollup-plugin-esbuild": "^6.2.0"
|
|
56
56
|
}
|
|
57
57
|
}
|
|
@@ -14,6 +14,9 @@ This command will run your app in development mode.
|
|
|
14
14
|
- `npm run build` <br/>
|
|
15
15
|
This command will build your app for production.
|
|
16
16
|
|
|
17
|
+
- `npm run lint` <br/>
|
|
18
|
+
This command will lint your apps source code.
|
|
19
|
+
|
|
17
20
|
- `npm run start` <br/>
|
|
18
21
|
This command will run your production build.
|
|
19
22
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "{{project-name}}",
|
|
3
3
|
"main": "dist/index.js",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"private": true,
|
|
5
6
|
"engines": {
|
|
6
7
|
"node": "^18",
|
|
@@ -8,6 +9,7 @@
|
|
|
8
9
|
},
|
|
9
10
|
"scripts": {
|
|
10
11
|
"build": "firefly build",
|
|
12
|
+
"lint": "firefly lint",
|
|
11
13
|
"start": "firefly start",
|
|
12
14
|
"dev": "firefly start --dev"
|
|
13
15
|
}
|
|
@@ -14,6 +14,9 @@ This command will run your app in development mode.
|
|
|
14
14
|
- `npm run build` <br/>
|
|
15
15
|
This command will build your app for production.
|
|
16
16
|
|
|
17
|
+
- `npm run lint` <br/>
|
|
18
|
+
This command will lint your apps source code.
|
|
19
|
+
|
|
17
20
|
- `npm run start` <br/>
|
|
18
21
|
This command will run your production build.
|
|
19
22
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "{{project-name}}",
|
|
3
3
|
"main": "dist/index.js",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"private": true,
|
|
5
6
|
"engines": {
|
|
6
7
|
"node": "^18",
|
|
@@ -8,6 +9,7 @@
|
|
|
8
9
|
},
|
|
9
10
|
"scripts": {
|
|
10
11
|
"build": "tsc && firefly build",
|
|
12
|
+
"lint": "firefly lint",
|
|
11
13
|
"start": "firefly start",
|
|
12
14
|
"dev": "firefly start --dev"
|
|
13
15
|
}
|