extension 2.0.0-alpha.17 → 2.0.0-alpha.19
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/dist/cli.js +9 -8
- package/package.json +20 -19
package/dist/cli.js
CHANGED
|
@@ -114,7 +114,7 @@ var package_default = {
|
|
|
114
114
|
node: ">=18"
|
|
115
115
|
},
|
|
116
116
|
name: "extension",
|
|
117
|
-
version: "2.0.0-alpha.
|
|
117
|
+
version: "2.0.0-alpha.19",
|
|
118
118
|
description: "Create cross-browser extensions with no build configuration.",
|
|
119
119
|
main: "./dist/cli.js",
|
|
120
120
|
types: "./dist/cli.d.ts",
|
|
@@ -131,13 +131,13 @@ var package_default = {
|
|
|
131
131
|
url: "https://cezaraugusto.com"
|
|
132
132
|
},
|
|
133
133
|
scripts: {
|
|
134
|
-
watch: "
|
|
134
|
+
watch: "pnpm compile --watch",
|
|
135
135
|
"compile:types": "bash install_scripts.sh",
|
|
136
136
|
"compile:readme-files": "node ./scripts/copyMarkdownFilesToCli.js",
|
|
137
137
|
"compile:tailwind-config": "node ./scripts/copyTailwindConfig.js",
|
|
138
138
|
"compile:stylelint-config": "node ./scripts/copyStylelintConfig.js",
|
|
139
139
|
"compile:cli": "tsup-node ./cli.ts --format cjs --dts --target=node18",
|
|
140
|
-
compile: "
|
|
140
|
+
compile: "pnpm compile:readme-files && pnpm compile:tailwind-config && pnpm compile:stylelint-config && pnpm compile:cli && pnpm compile:types",
|
|
141
141
|
clean: "rm -rf dist",
|
|
142
142
|
test: 'echo "Note: no test specified" && exit 0',
|
|
143
143
|
"test:cli": "jest __spec__/cli.spec.ts"
|
|
@@ -156,12 +156,14 @@ var package_default = {
|
|
|
156
156
|
"typescript"
|
|
157
157
|
],
|
|
158
158
|
dependencies: {
|
|
159
|
-
"@types/node": "^20.11.5",
|
|
160
|
-
"@types/chrome": "^0.0.268",
|
|
161
159
|
"@colors/colors": "^1.6.0",
|
|
162
|
-
"
|
|
163
|
-
"
|
|
160
|
+
"@types/chrome": "^0.0.270",
|
|
161
|
+
"@types/node": "^22.5.3",
|
|
162
|
+
"@types/react": "^18.3.5",
|
|
163
|
+
"@types/react-dom": "^18.2.18",
|
|
164
164
|
commander: "^11.1.0",
|
|
165
|
+
"extension-create": "2.0.0-alpha.19",
|
|
166
|
+
"extension-develop": "2.0.0-alpha.19",
|
|
165
167
|
semver: "^7.5.4",
|
|
166
168
|
"update-check": "^1.5.4",
|
|
167
169
|
"webextension-polyfill": "^0.12.0"
|
|
@@ -169,7 +171,6 @@ var package_default = {
|
|
|
169
171
|
devDependencies: {
|
|
170
172
|
"@types/jest": "^29.5.11",
|
|
171
173
|
"@types/mock-fs": "^4.13.4",
|
|
172
|
-
"@types/node": "^20.11.5",
|
|
173
174
|
"@types/semver": "^7.5.6",
|
|
174
175
|
jest: "^29.7.0",
|
|
175
176
|
"mock-fs": "^5.2.0",
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"node": ">=18"
|
|
10
10
|
},
|
|
11
11
|
"name": "extension",
|
|
12
|
-
"version": "2.0.0-alpha.
|
|
12
|
+
"version": "2.0.0-alpha.19",
|
|
13
13
|
"description": "Create cross-browser extensions with no build configuration.",
|
|
14
14
|
"main": "./dist/cli.js",
|
|
15
15
|
"types": "./dist/cli.d.ts",
|
|
@@ -25,18 +25,6 @@
|
|
|
25
25
|
"email": "boss@cezaraugusto.net",
|
|
26
26
|
"url": "https://cezaraugusto.com"
|
|
27
27
|
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"watch": "yarn compile --watch",
|
|
30
|
-
"compile:types": "bash install_scripts.sh",
|
|
31
|
-
"compile:readme-files": "node ./scripts/copyMarkdownFilesToCli.js",
|
|
32
|
-
"compile:tailwind-config": "node ./scripts/copyTailwindConfig.js",
|
|
33
|
-
"compile:stylelint-config": "node ./scripts/copyStylelintConfig.js",
|
|
34
|
-
"compile:cli": "tsup-node ./cli.ts --format cjs --dts --target=node18",
|
|
35
|
-
"compile": "yarn compile:readme-files && yarn compile:tailwind-config && yarn compile:stylelint-config && yarn compile:cli && yarn compile:types",
|
|
36
|
-
"clean": "rm -rf dist",
|
|
37
|
-
"test": "echo \"Note: no test specified\" && exit 0",
|
|
38
|
-
"test:cli": "jest __spec__/cli.spec.ts"
|
|
39
|
-
},
|
|
40
28
|
"keywords": [
|
|
41
29
|
"zero-config",
|
|
42
30
|
"build",
|
|
@@ -51,12 +39,14 @@
|
|
|
51
39
|
"typescript"
|
|
52
40
|
],
|
|
53
41
|
"dependencies": {
|
|
54
|
-
"@types/node": "^20.11.5",
|
|
55
|
-
"@types/chrome": "^0.0.268",
|
|
56
42
|
"@colors/colors": "^1.6.0",
|
|
57
|
-
"
|
|
58
|
-
"
|
|
43
|
+
"@types/chrome": "^0.0.270",
|
|
44
|
+
"@types/node": "^22.5.3",
|
|
45
|
+
"@types/react": "^18.3.5",
|
|
46
|
+
"@types/react-dom": "^18.2.18",
|
|
59
47
|
"commander": "^11.1.0",
|
|
48
|
+
"extension-create": "2.0.0-alpha.19",
|
|
49
|
+
"extension-develop": "2.0.0-alpha.19",
|
|
60
50
|
"semver": "^7.5.4",
|
|
61
51
|
"update-check": "^1.5.4",
|
|
62
52
|
"webextension-polyfill": "^0.12.0"
|
|
@@ -64,7 +54,6 @@
|
|
|
64
54
|
"devDependencies": {
|
|
65
55
|
"@types/jest": "^29.5.11",
|
|
66
56
|
"@types/mock-fs": "^4.13.4",
|
|
67
|
-
"@types/node": "^20.11.5",
|
|
68
57
|
"@types/semver": "^7.5.6",
|
|
69
58
|
"jest": "^29.7.0",
|
|
70
59
|
"mock-fs": "^5.2.0",
|
|
@@ -72,5 +61,17 @@
|
|
|
72
61
|
"tsconfig": "*",
|
|
73
62
|
"tsup": "^8.0.1",
|
|
74
63
|
"typescript": "5.3.3"
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"watch": "pnpm compile --watch",
|
|
67
|
+
"compile:types": "bash install_scripts.sh",
|
|
68
|
+
"compile:readme-files": "node ./scripts/copyMarkdownFilesToCli.js",
|
|
69
|
+
"compile:tailwind-config": "node ./scripts/copyTailwindConfig.js",
|
|
70
|
+
"compile:stylelint-config": "node ./scripts/copyStylelintConfig.js",
|
|
71
|
+
"compile:cli": "tsup-node ./cli.ts --format cjs --dts --target=node18",
|
|
72
|
+
"compile": "pnpm compile:readme-files && pnpm compile:tailwind-config && pnpm compile:stylelint-config && pnpm compile:cli && pnpm compile:types",
|
|
73
|
+
"clean": "rm -rf dist",
|
|
74
|
+
"test": "echo \"Note: no test specified\" && exit 0",
|
|
75
|
+
"test:cli": "jest __spec__/cli.spec.ts"
|
|
75
76
|
}
|
|
76
|
-
}
|
|
77
|
+
}
|