@webflow/webflow-cli 2.2.0 → 2.3.0
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/CHANGELOG.md +39 -0
- package/README.md +119 -0
- package/dist/index.js +204 -128
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
- package/dist/extension-scaffolds/default/.eslintrc +0 -25
- package/dist/extension-scaffolds/react/.eslintrc +0 -25
- package/dist/extension-scaffolds/typescript-alt/.eslintrc +0 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webflow/webflow-cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"bin": {
|
|
6
6
|
"webflow": "./dist/index.js"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@module-federation/enhanced": "2.5.1",
|
|
33
33
|
"@rspack/core": "^1.7.8",
|
|
34
34
|
"@webflow/cosmic-deploy-contract": "^1.0.2",
|
|
35
|
-
"@webflow/data-types": "^2.
|
|
35
|
+
"@webflow/data-types": "^2.1.0",
|
|
36
36
|
"ajv": "^8.17.1",
|
|
37
37
|
"archiver": "^5.3.1",
|
|
38
38
|
"babel-loader": "^10.0.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"semver": "^7.7.2",
|
|
62
62
|
"serve-handler": "^6.1.5",
|
|
63
63
|
"source-map-support": "^0.5.21",
|
|
64
|
-
"tar": "^7.5.
|
|
64
|
+
"tar": "^7.5.19",
|
|
65
65
|
"ts-checker-rspack-plugin": "^1.0.0",
|
|
66
66
|
"tsconfig-paths": "^4.2.0",
|
|
67
67
|
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
"webpack": ">=5.99.7 <5.106.0",
|
|
71
71
|
"webpack-merge": "^6.0.1",
|
|
72
72
|
"webpack-node-externals": "^3.0.0",
|
|
73
|
+
"yaml": "^2.8.4",
|
|
73
74
|
"zod": "^3.22.4"
|
|
74
75
|
},
|
|
75
76
|
"devDependencies": {
|
|
@@ -91,7 +92,7 @@
|
|
|
91
92
|
"express": "^4.18.1",
|
|
92
93
|
"jest": "^29.3.1",
|
|
93
94
|
"nock": "13.3.1",
|
|
94
|
-
"tar": "^7.5.
|
|
95
|
+
"tar": "^7.5.19",
|
|
95
96
|
"ts-jest": "^29.4.9",
|
|
96
97
|
"ts-node": "^10.9.1",
|
|
97
98
|
"tsconfig": "*",
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": [
|
|
3
|
-
"eslint:recommended",
|
|
4
|
-
"plugin:@typescript-eslint/eslint-recommended",
|
|
5
|
-
"plugin:@typescript-eslint/recommended"
|
|
6
|
-
],
|
|
7
|
-
"parser": "@typescript-eslint/parser",
|
|
8
|
-
"parserOptions": {
|
|
9
|
-
"project": "./tsconfig.json"
|
|
10
|
-
},
|
|
11
|
-
"plugins": ["@typescript-eslint", "promise"],
|
|
12
|
-
"rules": {
|
|
13
|
-
"@typescript-eslint/explicit-function-return-type": "off",
|
|
14
|
-
"@typescript-eslint/no-explicit-any": "off",
|
|
15
|
-
"@typescript-eslint/no-floating-promises": "error",
|
|
16
|
-
"@typescript-eslint/no-misused-promises": [
|
|
17
|
-
"error",
|
|
18
|
-
{ "checksVoidReturn": false }
|
|
19
|
-
],
|
|
20
|
-
"@typescript-eslint/no-unused-vars": "error",
|
|
21
|
-
"no-async-promise-executor": "error",
|
|
22
|
-
"require-await": "error",
|
|
23
|
-
"promise/catch-or-return": "error"
|
|
24
|
-
}
|
|
25
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": [
|
|
3
|
-
"eslint:recommended",
|
|
4
|
-
"plugin:@typescript-eslint/eslint-recommended",
|
|
5
|
-
"plugin:@typescript-eslint/recommended"
|
|
6
|
-
],
|
|
7
|
-
"parser": "@typescript-eslint/parser",
|
|
8
|
-
"parserOptions": {
|
|
9
|
-
"project": "./tsconfig.json"
|
|
10
|
-
},
|
|
11
|
-
"plugins": ["@typescript-eslint", "promise"],
|
|
12
|
-
"rules": {
|
|
13
|
-
"@typescript-eslint/explicit-function-return-type": "off",
|
|
14
|
-
"@typescript-eslint/no-explicit-any": "off",
|
|
15
|
-
"@typescript-eslint/no-floating-promises": "error",
|
|
16
|
-
"@typescript-eslint/no-misused-promises": [
|
|
17
|
-
"error",
|
|
18
|
-
{ "checksVoidReturn": false }
|
|
19
|
-
],
|
|
20
|
-
"@typescript-eslint/no-unused-vars": "error",
|
|
21
|
-
"no-async-promise-executor": "error",
|
|
22
|
-
"require-await": "error",
|
|
23
|
-
"promise/catch-or-return": "error"
|
|
24
|
-
}
|
|
25
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": [
|
|
3
|
-
"eslint:recommended",
|
|
4
|
-
"plugin:@typescript-eslint/eslint-recommended",
|
|
5
|
-
"plugin:@typescript-eslint/recommended"
|
|
6
|
-
],
|
|
7
|
-
"parser": "@typescript-eslint/parser",
|
|
8
|
-
"parserOptions": {
|
|
9
|
-
"project": "./tsconfig.json"
|
|
10
|
-
},
|
|
11
|
-
"plugins": ["@typescript-eslint", "promise"],
|
|
12
|
-
"rules": {
|
|
13
|
-
"@typescript-eslint/explicit-function-return-type": "off",
|
|
14
|
-
"@typescript-eslint/no-explicit-any": "off",
|
|
15
|
-
"@typescript-eslint/no-floating-promises": "error",
|
|
16
|
-
"@typescript-eslint/no-misused-promises": [
|
|
17
|
-
"error",
|
|
18
|
-
{ "checksVoidReturn": false }
|
|
19
|
-
],
|
|
20
|
-
"@typescript-eslint/no-unused-vars": "error",
|
|
21
|
-
"no-async-promise-executor": "error",
|
|
22
|
-
"require-await": "error",
|
|
23
|
-
"promise/catch-or-return": "error"
|
|
24
|
-
}
|
|
25
|
-
}
|