@ms-cloudpack/cli 0.10.0 → 0.10.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 CHANGED
@@ -2,7 +2,61 @@
2
2
  "name": "@ms-cloudpack/cli",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 20 Sep 2022 08:13:37 GMT",
5
+ "date": "Thu, 22 Sep 2022 08:14:56 GMT",
6
+ "tag": "@ms-cloudpack/cli_v0.10.2",
7
+ "version": "0.10.2",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "dzearing@microsoft.com",
12
+ "package": "@ms-cloudpack/cli",
13
+ "commit": "fd93547d82c67060cc5d3be5b1749972be3924ff",
14
+ "comment": "Moving typings file to root of cli project."
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@ms-cloudpack/cli",
19
+ "comment": "Bump @ms-cloudpack/bundler to v0.4.3",
20
+ "commit": "bf1f396952dc6bf592e7d4fb82d700da2e5deac6"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@ms-cloudpack/cli",
25
+ "comment": "Bump @ms-cloudpack/package-utilities to v0.12.0",
26
+ "commit": "bf1f396952dc6bf592e7d4fb82d700da2e5deac6"
27
+ }
28
+ ]
29
+ }
30
+ },
31
+ {
32
+ "date": "Wed, 21 Sep 2022 08:15:19 GMT",
33
+ "tag": "@ms-cloudpack/cli_v0.10.1",
34
+ "version": "0.10.1",
35
+ "comments": {
36
+ "patch": [
37
+ {
38
+ "author": "beachball",
39
+ "package": "@ms-cloudpack/cli",
40
+ "comment": "Bump @ms-cloudpack/bundler to v0.4.2",
41
+ "commit": "edaf39b3a641d469b5238c446b23e25399714ebd"
42
+ },
43
+ {
44
+ "author": "beachball",
45
+ "package": "@ms-cloudpack/cli",
46
+ "comment": "Bump @ms-cloudpack/package-utilities to v0.11.0",
47
+ "commit": "edaf39b3a641d469b5238c446b23e25399714ebd"
48
+ },
49
+ {
50
+ "author": "beachball",
51
+ "package": "@ms-cloudpack/cli",
52
+ "comment": "Bump @ms-cloudpack/path-utilities to v0.5.0",
53
+ "commit": "edaf39b3a641d469b5238c446b23e25399714ebd"
54
+ }
55
+ ]
56
+ }
57
+ },
58
+ {
59
+ "date": "Tue, 20 Sep 2022 08:13:46 GMT",
6
60
  "tag": "@ms-cloudpack/cli_v0.10.0",
7
61
  "version": "0.10.0",
8
62
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,32 @@
1
1
  # Change Log - @ms-cloudpack/cli
2
2
 
3
- This log was last generated on Tue, 20 Sep 2022 08:13:37 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 22 Sep 2022 08:14:56 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.10.2
8
+
9
+ Thu, 22 Sep 2022 08:14:56 GMT
10
+
11
+ ### Patches
12
+
13
+ - Moving typings file to root of cli project. (dzearing@microsoft.com)
14
+ - Bump @ms-cloudpack/bundler to v0.4.3
15
+ - Bump @ms-cloudpack/package-utilities to v0.12.0
16
+
17
+ ## 0.10.1
18
+
19
+ Wed, 21 Sep 2022 08:15:19 GMT
20
+
21
+ ### Patches
22
+
23
+ - Bump @ms-cloudpack/bundler to v0.4.2
24
+ - Bump @ms-cloudpack/package-utilities to v0.11.0
25
+ - Bump @ms-cloudpack/path-utilities to v0.5.0
26
+
7
27
  ## 0.10.0
8
28
 
9
- Tue, 20 Sep 2022 08:13:37 GMT
29
+ Tue, 20 Sep 2022 08:13:46 GMT
10
30
 
11
31
  ### Minor changes
12
32
 
@@ -1,4 +1,4 @@
1
- import type { Task, TaskOptions } from './types.js';
1
+ import type { Task, TaskOptions } from '../../types.js';
2
2
  /**
3
3
  * TaskRunner class manages the state of Tasks.
4
4
  * This class is to be called by the api server.
@@ -1,3 +1,3 @@
1
- import type { BundleRequest, BundleTaskOptions, Task } from './types.js';
1
+ import type { BundleRequest, BundleTaskOptions, Task } from '../../types.js';
2
2
  export declare function bundle(bundleRequest: BundleRequest, force?: boolean): Promise<BundleRequest>;
3
3
  export declare function createBundleTask(bundleRequest: BundleRequest, options?: BundleTaskOptions): Task<BundleRequest>;
@@ -1,4 +1,4 @@
1
- import type { Session } from './types.js';
1
+ import type { Session } from '../../types.js';
2
2
  export interface SessionOptions {
3
3
  appPath: string;
4
4
  }
@@ -1,4 +1,4 @@
1
- import type { ApiServer, Session } from './types.js';
1
+ import type { ApiServer, Session } from '../../types.js';
2
2
  /**
3
3
  * The api server handles the data pub/sub (for things like reporting build status)
4
4
  * and hosting the dashboard verb backend (for executing actions like loading vscode,
@@ -1,4 +1,4 @@
1
- import type { ApiServer, BundleServer, Session } from './types.js';
1
+ import type { ApiServer, BundleServer, Session } from '../../types.js';
2
2
  /**
3
3
  * The app server hosts the appropriate routes for the web app, primarily returning html content
4
4
  * which loads resources from the bundle server.
@@ -1,4 +1,4 @@
1
- import type { ApiServer, BundleServer, Session } from './types.js';
1
+ import type { ApiServer, BundleServer, Session } from '../../types.js';
2
2
  /**
3
3
  * The bundle server handles package requests and returns bundled resources.
4
4
  * Resources are bundled on demand and cached locally to avoid re-bundling
@@ -1,4 +1,4 @@
1
- import type { ApiServer, BundleRequest } from './types.js';
1
+ import type { ApiServer, BundleRequest } from '../../types.js';
2
2
  export declare function startWatcher(apiServer: ApiServer): {
3
3
  watch: (bundleRequest: BundleRequest) => void;
4
4
  };
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.31.1"
8
+ "packageVersion": "7.31.2"
9
9
  }
10
10
  ]
11
11
  }
File without changes
File without changes
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ms-cloudpack/cli",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
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",
@@ -16,13 +16,13 @@
16
16
  "cloudpack": "./lib/cloudpack.js"
17
17
  },
18
18
  "dependencies": {
19
- "@ms-cloudpack/bundler": "^0.4.1",
19
+ "@ms-cloudpack/bundler": "^0.4.3",
20
20
  "@ms-cloudpack/create-express-app": "^0.1.0",
21
21
  "@ms-cloudpack/data-bus": "^0.1.0",
22
22
  "@ms-cloudpack/json-utilities": "^0.0.3",
23
23
  "@ms-cloudpack/overlay": "^0.1.1",
24
- "@ms-cloudpack/package-utilities": "^0.10.0",
25
- "@ms-cloudpack/path-utilities": "^0.4.0",
24
+ "@ms-cloudpack/package-utilities": "^0.12.0",
25
+ "@ms-cloudpack/path-utilities": "^0.5.0",
26
26
  "chokidar": "^3.5.3",
27
27
  "commander": "^9.1.0",
28
28
  "filenamify": "^5.1.0",
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/commands/start/types.ts"],"names":[],"mappings":""}