@appshell/cli 1.0.0-alpha.8 → 1.0.0-alpha.80
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 +170 -100
- package/dist/main.js +9 -9
- package/dist/main.js.LICENSE.txt +39 -0
- package/package.json +9 -4
package/dist/main.js.LICENSE.txt
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* fill-range <https://github.com/jonschlinkert/fill-range>
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2014-present, Jon Schlinkert.
|
|
5
|
+
* Licensed under the MIT License.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*!
|
|
9
|
+
* is-extglob <https://github.com/jonschlinkert/is-extglob>
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2014-2016, Jon Schlinkert.
|
|
12
|
+
* Licensed under the MIT License.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/*!
|
|
16
|
+
* is-glob <https://github.com/jonschlinkert/is-glob>
|
|
17
|
+
*
|
|
18
|
+
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
19
|
+
* Released under the MIT License.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
/*!
|
|
23
|
+
* is-number <https://github.com/jonschlinkert/is-number>
|
|
24
|
+
*
|
|
25
|
+
* Copyright (c) 2014-present, Jon Schlinkert.
|
|
26
|
+
* Released under the MIT License.
|
|
27
|
+
*/
|
|
28
|
+
|
|
1
29
|
/*!
|
|
2
30
|
* mime-db
|
|
3
31
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -12,8 +40,19 @@
|
|
|
12
40
|
* MIT Licensed
|
|
13
41
|
*/
|
|
14
42
|
|
|
43
|
+
/*!
|
|
44
|
+
* to-regex-range <https://github.com/micromatch/to-regex-range>
|
|
45
|
+
*
|
|
46
|
+
* Copyright (c) 2015-present, Jon Schlinkert.
|
|
47
|
+
* Released under the MIT License.
|
|
48
|
+
*/
|
|
49
|
+
|
|
50
|
+
/*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
51
|
+
|
|
15
52
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
|
|
16
53
|
|
|
54
|
+
/*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
55
|
+
|
|
17
56
|
/**
|
|
18
57
|
* @license
|
|
19
58
|
* Copyright (c) 2016, Contributors
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appshell/cli",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.80",
|
|
4
4
|
"description": "cli utility to generate a global appshell artifacts for module federation micro-frontends",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
|
-
"repository":
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/appshellhq/appshell.git"
|
|
9
|
+
},
|
|
7
10
|
"author": "Robert Hamilton <rh@navaris.com>",
|
|
8
11
|
"publishConfig": {
|
|
9
12
|
"access": "public",
|
|
@@ -13,6 +16,7 @@
|
|
|
13
16
|
"build": "webpack --mode production",
|
|
14
17
|
"postbuild": "chmod +x dist/main.js",
|
|
15
18
|
"clean": "rm -rf dist",
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
16
20
|
"prebuild": "npm run clean",
|
|
17
21
|
"start": "webpack --watch --mode development",
|
|
18
22
|
"stats": "webpack --json > stats.json"
|
|
@@ -32,7 +36,8 @@
|
|
|
32
36
|
"license": "MIT",
|
|
33
37
|
"dependencies": {
|
|
34
38
|
"change-case": "^5.4.4",
|
|
35
|
-
"chokidar": "^3.6.0"
|
|
39
|
+
"chokidar": "^3.6.0",
|
|
40
|
+
"fast-glob": "^3.3.3"
|
|
36
41
|
},
|
|
37
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "17dbb8bbb3910247a14952dc8b6870927cba63b9"
|
|
38
43
|
}
|