@ms-cloudpack/cli 0.0.2

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/CHANGELOG.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@ms-cloudpack/cli",
3
+ "entries": [
4
+ {
5
+ "date": "Mon, 09 May 2022 18:54:32 GMT",
6
+ "tag": "@ms-cloudpack/cli_v0.0.2",
7
+ "version": "0.0.2",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "dzearing@microsoft.com",
12
+ "package": "@ms-cloudpack/cli",
13
+ "commit": "13c322180c016e6c653d4694b9f3380adeb8ad6f",
14
+ "comment": "Initial publish."
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@ms-cloudpack/cli",
19
+ "comment": "Bump @ms-cloudpack/bundler to v0.0.2",
20
+ "commit": "13c322180c016e6c653d4694b9f3380adeb8ad6f"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@ms-cloudpack/cli",
25
+ "comment": "Bump @ms-cloudpack/bundler-types to v0.0.2",
26
+ "commit": "13c322180c016e6c653d4694b9f3380adeb8ad6f"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@ms-cloudpack/cli",
31
+ "comment": "Bump @ms-cloudpack/create-express-app to v0.0.2",
32
+ "commit": "13c322180c016e6c653d4694b9f3380adeb8ad6f"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@ms-cloudpack/cli",
37
+ "comment": "Bump @ms-cloudpack/data-bus to v0.0.2",
38
+ "commit": "13c322180c016e6c653d4694b9f3380adeb8ad6f"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@ms-cloudpack/cli",
43
+ "comment": "Bump @ms-cloudpack/json-utilities to v0.0.2",
44
+ "commit": "13c322180c016e6c653d4694b9f3380adeb8ad6f"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Tue, 29 Mar 2022 01:47:58 GMT",
51
+ "tag": "@ms-cloudpack/cli_v0.0.1",
52
+ "version": "0.0.1",
53
+ "comments": {
54
+ "patch": [
55
+ {
56
+ "author": "beachball",
57
+ "package": "@ms-cloudpack/cli",
58
+ "comment": "Bump @ms-cloudpack/package-utilities to v0.1.1",
59
+ "commit": "c971096caa21fb5a35090205cccf36f2cd2543fb"
60
+ }
61
+ ]
62
+ }
63
+ }
64
+ ]
65
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,26 @@
1
+ # Change Log - @ms-cloudpack/cli
2
+
3
+ This log was last generated on Mon, 09 May 2022 18:54:32 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## 0.0.2
8
+
9
+ Mon, 09 May 2022 18:54:32 GMT
10
+
11
+ ### Patches
12
+
13
+ - Initial publish. (dzearing@microsoft.com)
14
+ - Bump @ms-cloudpack/bundler to v0.0.2
15
+ - Bump @ms-cloudpack/bundler-types to v0.0.2
16
+ - Bump @ms-cloudpack/create-express-app to v0.0.2
17
+ - Bump @ms-cloudpack/data-bus to v0.0.2
18
+ - Bump @ms-cloudpack/json-utilities to v0.0.2
19
+
20
+ ## 0.0.1
21
+
22
+ Tue, 29 Mar 2022 01:47:58 GMT
23
+
24
+ ### Patches
25
+
26
+ - Bump @ms-cloudpack/package-utilities to v0.1.1
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @ms-cloudpack/cli
2
+
3
+ Provides the official Cloudpack cli for dev services.
4
+
5
+ ## Usage
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@ms-cloudpack/cli",
3
+ "version": "0.0.2",
4
+ "description": "The Cloudpack command line interface - a tool for managing fast inner and outer looping in web apps.",
5
+ "type": "module",
6
+ "types": "./lib/index.d.ts",
7
+ "sideEffects": false,
8
+ "exports": {
9
+ ".": {
10
+ "types": "./lib/index.d.ts",
11
+ "import": "./lib/index.js"
12
+ }
13
+ },
14
+ "bin": {
15
+ "cloudpack": "./lib/cloudpack.js"
16
+ },
17
+ "dependencies": {
18
+ "@ms-cloudpack/bundler": "^0.0.2",
19
+ "@ms-cloudpack/bundler-types": "^0.0.2",
20
+ "@ms-cloudpack/create-express-app": "^0.0.2",
21
+ "@ms-cloudpack/data-bus": "^0.0.2",
22
+ "@ms-cloudpack/json-utilities": "^0.0.2",
23
+ "@ms-cloudpack/package-utilities": "^0.1.2",
24
+ "@ms-cloudpack/path-utilities": "^0.1.0",
25
+ "commander": "^9.1.0",
26
+ "express": "^4.17.3",
27
+ "filenamify": "^5.1.0",
28
+ "fs-extra": "^10.1.0",
29
+ "object-hash": "^3.0.0",
30
+ "open": "^8.4.0",
31
+ "glob": "^8.0.0",
32
+ "uuid": "^8.3.2"
33
+ },
34
+ "devDependencies": {
35
+ "@types/commander": "2.12.2",
36
+ "@types/express": "4.17.13",
37
+ "@types/fs-extra": "9.0.13",
38
+ "@types/glob": "7.2.0",
39
+ "@types/object-hash": "2.2.1",
40
+ "@types/open": "6.2.1",
41
+ "@types/uuid": "8.3.4"
42
+ },
43
+ "scripts": {
44
+ "build": "just-scripts build",
45
+ "build:watch": "just-scripts build:watch",
46
+ "lint": "just-scripts lint",
47
+ "lint:fix": "just-scripts lint:fix"
48
+ },
49
+ "files": [
50
+ "/lib"
51
+ ]
52
+ }