@interopio/iocd-cli 0.0.19 → 0.0.20
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.
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
# dependencies
|
|
4
|
+
/node_modules
|
|
5
|
+
/.pnp
|
|
6
|
+
.pnp.js
|
|
7
|
+
|
|
8
|
+
# testing
|
|
9
|
+
/coverage
|
|
10
|
+
|
|
11
|
+
# production
|
|
12
|
+
/build
|
|
13
|
+
|
|
14
|
+
# misc
|
|
15
|
+
.DS_Store
|
|
16
|
+
.env.local
|
|
17
|
+
.env.development.local
|
|
18
|
+
.env.test.local
|
|
19
|
+
.env.production.local
|
|
20
|
+
|
|
21
|
+
npm-debug.log*
|
|
22
|
+
yarn-debug.log*
|
|
23
|
+
yarn-error.log*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
public/modals-ui/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interopio/iocd-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20",
|
|
4
4
|
"description": "CLI tool for setting up, building and packaging io.Connect Desktop platforms",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0",
|
|
@@ -22,7 +22,12 @@
|
|
|
22
22
|
"lint": "eslint src --ext .ts",
|
|
23
23
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
24
24
|
"format": "prettier --write src/**/*.ts",
|
|
25
|
-
"prepublishOnly": "npm run build",
|
|
25
|
+
"prepublishOnly": "npm run build && npm run gitignore:pre-package",
|
|
26
|
+
"postpublish": "npm run gitignore:post-publish",
|
|
27
|
+
"postinstall": "npm run gitignore:post-install",
|
|
28
|
+
"gitignore:pre-package": "node ./scripts/handle-gitignore-templates.js pre-package",
|
|
29
|
+
"gitignore:post-publish": "node ./scripts/handle-gitignore-templates.js post-publish",
|
|
30
|
+
"gitignore:post-install": "node ./scripts/handle-gitignore-templates.js post-install",
|
|
26
31
|
"cli": "npm run build && node dist/cli.js"
|
|
27
32
|
},
|
|
28
33
|
"keywords": [
|
|
@@ -35,8 +40,7 @@
|
|
|
35
40
|
"author": "Interop.io",
|
|
36
41
|
"license": "MIT",
|
|
37
42
|
"files": [
|
|
38
|
-
"dist",
|
|
39
|
-
"templates",
|
|
43
|
+
"dist/**/*",
|
|
40
44
|
"tools",
|
|
41
45
|
"README.md"
|
|
42
46
|
],
|