extension-create 1.0.0 → 1.0.2
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/README.md +0 -2
- package/dist/cli.js +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -92,8 +92,6 @@ If you want to target a specific browser, just pass the `--browser` flag to the
|
|
|
92
92
|
|
|
93
93
|
That's it!
|
|
94
94
|
|
|
95
|
-
> _Hint: pass `all` instead of `edge` as an argument to load both Edge and Chrome at the same time!_
|
|
96
|
-
|
|
97
95
|
## Program Options Table
|
|
98
96
|
|
|
99
97
|
For a list of all commands available, see [OPTIONS_TABLE.md](OPTIONS_TABLE.md).
|
package/dist/cli.js
CHANGED
|
@@ -116,7 +116,7 @@ var package_default = {
|
|
|
116
116
|
node: ">=18"
|
|
117
117
|
},
|
|
118
118
|
name: "extension-create",
|
|
119
|
-
version: "1.0.
|
|
119
|
+
version: "1.0.2",
|
|
120
120
|
description: "Create cross-browser extensions with no build configuration.",
|
|
121
121
|
main: "./dist/cli.js",
|
|
122
122
|
types: "./dist/cli.d.ts",
|
|
@@ -132,9 +132,9 @@ var package_default = {
|
|
|
132
132
|
url: "https://cezaraugusto.com"
|
|
133
133
|
},
|
|
134
134
|
scripts: {
|
|
135
|
-
|
|
135
|
+
copyMarkdownFilesToCli: "node ./scripts/copyMarkdownFilesToCli.js",
|
|
136
136
|
clean: "rm -rf dist",
|
|
137
|
-
compile: "tsup-node ./cli.ts --format cjs --dts --target=node18",
|
|
137
|
+
compile: "yarn copyMarkdownFilesToCli && tsup-node ./cli.ts --format cjs --dts --target=node18",
|
|
138
138
|
test: "jest"
|
|
139
139
|
},
|
|
140
140
|
keywords: [
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"node": ">=18"
|
|
9
9
|
},
|
|
10
10
|
"name": "extension-create",
|
|
11
|
-
"version": "1.0.
|
|
11
|
+
"version": "1.0.2",
|
|
12
12
|
"description": "Create cross-browser extensions with no build configuration.",
|
|
13
13
|
"main": "./dist/cli.js",
|
|
14
14
|
"types": "./dist/cli.d.ts",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"url": "https://cezaraugusto.com"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
|
-
"
|
|
27
|
+
"copyMarkdownFilesToCli": "node ./scripts/copyMarkdownFilesToCli.js",
|
|
28
28
|
"clean": "rm -rf dist",
|
|
29
|
-
"compile": "tsup-node ./cli.ts --format cjs --dts --target=node18",
|
|
29
|
+
"compile": "yarn copyMarkdownFilesToCli && tsup-node ./cli.ts --format cjs --dts --target=node18",
|
|
30
30
|
"test": "jest"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|