sliftutils 0.2.0 → 0.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/builders/nodeJSBuild.ts +29 -0
- package/builders/nodeJSBuildRun.js +2 -0
- package/bundler/bundleEntry.ts +13 -8
- package/bundler/bundleEntryCaller.ts +7 -3
- package/package-lock.json +2311 -0
- package/package.json +11 -3
- package/spec.txt +17 -0
package/package.json
CHANGED
|
@@ -1,17 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sliftutils",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"type": "yarn tsc --noEmit"
|
|
7
|
+
"type": "yarn tsc --noEmit",
|
|
8
|
+
"build-nodejs": "yarn typenode ./builders/nodeJSBuild.ts"
|
|
9
|
+
},
|
|
10
|
+
"bin": {
|
|
11
|
+
"build-nodejs": "./builders/nodeJSBuildRun.js"
|
|
8
12
|
},
|
|
9
13
|
"dependencies": {
|
|
14
|
+
"@types/shell-quote": "^1.7.5",
|
|
10
15
|
"js-sha256": "^0.11.1",
|
|
11
|
-
"
|
|
16
|
+
"shell-quote": "^1.8.3",
|
|
17
|
+
"typesafecss": "^0.26.0",
|
|
18
|
+
"yargs": "15.4.1"
|
|
12
19
|
},
|
|
13
20
|
"devDependencies": {
|
|
14
21
|
"@types/chrome": "^0.0.237",
|
|
22
|
+
"@types/yargs": "15.0.19",
|
|
15
23
|
"debugbreak": "^0.9.9",
|
|
16
24
|
"typedev": "^0.1.1"
|
|
17
25
|
},
|
package/spec.txt
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
TODO:
|
|
2
2
|
4) New project with:
|
|
3
3
|
|
|
4
|
+
maybe... we need bins and entry points for the common types of builds
|
|
5
|
+
extension
|
|
6
|
+
copy manifest.json
|
|
7
|
+
build background.ts, copy it
|
|
8
|
+
build content.ts, copy it
|
|
9
|
+
site
|
|
10
|
+
build site, copy it
|
|
11
|
+
electron
|
|
12
|
+
build main process, copy it
|
|
13
|
+
build render process, copy it
|
|
14
|
+
copy the json config file?
|
|
15
|
+
|
|
16
|
+
build-nodejs
|
|
17
|
+
build-electron
|
|
18
|
+
build-extension
|
|
19
|
+
build-web
|
|
20
|
+
|
|
4
21
|
watch helper script in bin
|
|
5
22
|
- And have it automatically ignore .gitignored files
|
|
6
23
|
- And have it also watch .watchignore
|