@appshell/cli 0.1.4-alpha.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/LICENSE +21 -0
- package/README.md +203 -0
- package/dist/main.js +9 -0
- package/dist/main.js.LICENSE.txt +25 -0
- package/package.json +32 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview Main entrypoint for libraries using yargs-parser in Node.js
|
|
3
|
+
* CJS and ESM environments.
|
|
4
|
+
*
|
|
5
|
+
* @license
|
|
6
|
+
* Copyright (c) 2016, Contributors
|
|
7
|
+
* SPDX-License-Identifier: ISC
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @license
|
|
12
|
+
* Copyright (c) 2016, Contributors
|
|
13
|
+
* SPDX-License-Identifier: ISC
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* @license
|
|
18
|
+
* Lodash <https://lodash.com/>
|
|
19
|
+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
20
|
+
* Released under MIT license <https://lodash.com/license>
|
|
21
|
+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
22
|
+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@appshell/cli",
|
|
3
|
+
"version": "0.1.4-alpha.0",
|
|
4
|
+
"description": "cli utility to generate a global Appshell manifest for module federation micro-frontends",
|
|
5
|
+
"main": "dist/main.js",
|
|
6
|
+
"repository": "https://github.com/navaris/appshell.git",
|
|
7
|
+
"author": "Robert Hamilton <rh@navaris.com>",
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "restricted",
|
|
10
|
+
"registry": "https://registry.npmjs.org/"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "webpack --mode production",
|
|
14
|
+
"clean": "rm -rf dist",
|
|
15
|
+
"prebuild": "npm run clean",
|
|
16
|
+
"start": "webpack --watch --mode development",
|
|
17
|
+
"stats": "webpack --json > stats.json"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"bin": {
|
|
23
|
+
"appshell": "./dist/main.js"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"webpack",
|
|
27
|
+
"module federation",
|
|
28
|
+
"micro-frontends"
|
|
29
|
+
],
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"gitHead": "cd8667dbab1f1c8dec3873bc14282377fee78880"
|
|
32
|
+
}
|