innetjs 2.1.6 → 2.2.1
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/bin/innet +364 -226
- package/bin/innet.d.ts +2 -0
- package/constants.d.ts +1 -1
- package/constants.js +36 -0
- package/constants.mjs +30 -0
- package/extract.js +49 -0
- package/extract.mjs +45 -0
- package/helpers.js +54 -0
- package/helpers.mjs +41 -0
- package/index.d.ts +26 -14
- package/index.js +318 -300
- package/{index.es6.js → index.mjs} +284 -272
- package/package.json +23 -3
package/package.json
CHANGED
|
@@ -1,13 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "innetjs",
|
|
3
|
-
"version": "2.1
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "CLI for innet boilerplate",
|
|
5
5
|
"homepage": "https://github.com/d8corp/innetjs",
|
|
6
6
|
"author": "Mikhail Lysikov <d8corp@mail.ru>",
|
|
7
7
|
"license": "MIT",
|
|
8
|
+
"main": "index.js",
|
|
9
|
+
"module": "index.mjs",
|
|
10
|
+
"esnext": "index.mjs",
|
|
11
|
+
"jsnext:main": "index.mjs",
|
|
12
|
+
"types": "index.d.ts",
|
|
8
13
|
"bin": {
|
|
9
14
|
"innetjs": "bin/innet"
|
|
10
15
|
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "innetjs release -n",
|
|
18
|
+
"test": "jest",
|
|
19
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
20
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
21
|
+
"start": "npm run build && cd lib && npm link",
|
|
22
|
+
"stop": "npm unlink innetjs -g",
|
|
23
|
+
"restart": "npm run stop && npm start",
|
|
24
|
+
"patch": "innetjs release -n -r patch",
|
|
25
|
+
"minor": "innetjs release -n -r minor",
|
|
26
|
+
"major": "innetjs release -n -r major"
|
|
27
|
+
},
|
|
11
28
|
"repository": {
|
|
12
29
|
"type": "git",
|
|
13
30
|
"url": "https://github.com/d8corp/innetjs.git"
|
|
@@ -48,15 +65,18 @@
|
|
|
48
65
|
"express": "^4.18.2",
|
|
49
66
|
"express-http-proxy": "^1.6.3",
|
|
50
67
|
"fs-extra": "^10.1.0",
|
|
68
|
+
"glob": "^8.0.3",
|
|
51
69
|
"lines-and-columns": "^2.0.3",
|
|
52
70
|
"postcss": "^8.4.18",
|
|
53
71
|
"prompts": "^2.4.2",
|
|
54
72
|
"rollup": "^2.79.1",
|
|
55
73
|
"rollup-plugin-filesize": "^9.1.2",
|
|
56
74
|
"rollup-plugin-inject-process-env": "^1.3.1",
|
|
57
|
-
"rollup-plugin-innet-jsx": "^1.3.
|
|
75
|
+
"rollup-plugin-innet-jsx": "^1.3.2",
|
|
58
76
|
"rollup-plugin-livereload": "^2.0.5",
|
|
77
|
+
"rollup-plugin-node-externals": "^5.0.2",
|
|
59
78
|
"rollup-plugin-polyfill-node": "^0.11.0",
|
|
79
|
+
"rollup-plugin-preserve-shebangs": "^0.2.0",
|
|
60
80
|
"rollup-plugin-string": "^3.0.0",
|
|
61
81
|
"rollup-plugin-styles": "^4.0.0",
|
|
62
82
|
"rollup-plugin-terser": "^7.0.2",
|
|
@@ -66,4 +86,4 @@
|
|
|
66
86
|
"typescript": "^4.8.4",
|
|
67
87
|
"unzipper": "^0.10.11"
|
|
68
88
|
}
|
|
69
|
-
}
|
|
89
|
+
}
|