@ms-cloudpack/cli 0.74.9 → 0.74.11
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/lib/index.d.ts +2 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -0
- package/package.json +16 -7
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,YAAY,EACV,iBAAiB,EACjB,yBAAyB,EACzB,eAAe,EACf,SAAS,EACT,WAAW,EACX,aAAa,EACb,cAAc,EACd,qBAAqB,EACrB,oBAAoB,EACpB,OAAO,GACR,MAAM,4BAA4B,CAAC"}
|
package/lib/index.js
ADDED
package/lib/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"","sourcesContent":["// This should just export types that are potentially needed by consumers for customization.\nexport type {\n BundlerCapability,\n BundlerCapabilityFunction,\n CloudpackConfig,\n ImportMap,\n PackageJson,\n RenderedRoute,\n RenderFunction,\n RenderFunctionOptions,\n RenderFunctionResult,\n Session,\n} from '@ms-cloudpack/common-types';\n"]}
|
package/package.json
CHANGED
|
@@ -1,26 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ms-cloudpack/cli",
|
|
3
|
-
"version": "0.74.
|
|
3
|
+
"version": "0.74.11",
|
|
4
4
|
"description": "The Cloudpack command line interface - a tool for managing fast inner and outer looping in web apps.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"sideEffects": false,
|
|
8
|
-
"
|
|
8
|
+
"types": "./lib/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"source": "./src/index.ts",
|
|
12
|
+
"types": "./lib/index.d.ts",
|
|
13
|
+
"import": "./lib/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./package.json": "./package.json"
|
|
16
|
+
},
|
|
9
17
|
"bin": {
|
|
10
18
|
"cloudpack": "./bin/cloudpack.js"
|
|
11
19
|
},
|
|
12
20
|
"dependencies": {
|
|
13
|
-
"@ms-cloudpack/api-server": "^0.63.
|
|
14
|
-
"@ms-cloudpack/app-server": "^0.18.
|
|
15
|
-
"@ms-cloudpack/bundler": "^0.25.
|
|
21
|
+
"@ms-cloudpack/api-server": "^0.63.8",
|
|
22
|
+
"@ms-cloudpack/app-server": "^0.18.11",
|
|
23
|
+
"@ms-cloudpack/bundler": "^0.25.10",
|
|
16
24
|
"@ms-cloudpack/bundler-capabilities": "^0.2.26",
|
|
17
25
|
"@ms-cloudpack/common-types": "^0.24.20",
|
|
18
26
|
"@ms-cloudpack/config": "^0.35.8",
|
|
19
27
|
"@ms-cloudpack/create-express-app": "^1.10.34",
|
|
20
28
|
"@ms-cloudpack/environment": "^0.1.1",
|
|
21
29
|
"@ms-cloudpack/json-utilities": "^0.1.10",
|
|
22
|
-
"@ms-cloudpack/link-proxy": "^0.2.
|
|
23
|
-
"@ms-cloudpack/overlay": "^0.19.
|
|
30
|
+
"@ms-cloudpack/link-proxy": "^0.2.10",
|
|
31
|
+
"@ms-cloudpack/overlay": "^0.19.6",
|
|
24
32
|
"@ms-cloudpack/package-utilities": "^12.3.10",
|
|
25
33
|
"@ms-cloudpack/path-string-parsing": "^1.2.7",
|
|
26
34
|
"@ms-cloudpack/path-utilities": "^3.1.5",
|
|
@@ -51,6 +59,7 @@
|
|
|
51
59
|
"@types/yarnpkg__lockfile": "^1.1.5"
|
|
52
60
|
},
|
|
53
61
|
"scripts": {
|
|
62
|
+
"api": "cloudpack-scripts api",
|
|
54
63
|
"build:watch": "cloudpack-scripts build-watch",
|
|
55
64
|
"build": "cloudpack-scripts build",
|
|
56
65
|
"lint:update": "cloudpack-scripts lint-update",
|