@ms-cloudpack/cli 0.10.1 → 0.10.3

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,55 @@
2
2
  "name": "@ms-cloudpack/cli",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 21 Sep 2022 08:14:52 GMT",
5
+ "date": "Fri, 23 Sep 2022 08:12:48 GMT",
6
+ "tag": "@ms-cloudpack/cli_v0.10.3",
7
+ "version": "0.10.3",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "beachball",
12
+ "package": "@ms-cloudpack/cli",
13
+ "comment": "Bump @ms-cloudpack/bundler to v0.4.4",
14
+ "commit": "3d217e7c8066aafe28eee7826506f66be3506aae"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@ms-cloudpack/cli",
19
+ "comment": "Bump @ms-cloudpack/package-utilities to v0.12.1",
20
+ "commit": "3d217e7c8066aafe28eee7826506f66be3506aae"
21
+ }
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "date": "Thu, 22 Sep 2022 08:15:14 GMT",
27
+ "tag": "@ms-cloudpack/cli_v0.10.2",
28
+ "version": "0.10.2",
29
+ "comments": {
30
+ "patch": [
31
+ {
32
+ "author": "dzearing@microsoft.com",
33
+ "package": "@ms-cloudpack/cli",
34
+ "commit": "fd93547d82c67060cc5d3be5b1749972be3924ff",
35
+ "comment": "Moving typings file to root of cli project."
36
+ },
37
+ {
38
+ "author": "beachball",
39
+ "package": "@ms-cloudpack/cli",
40
+ "comment": "Bump @ms-cloudpack/bundler to v0.4.3",
41
+ "commit": "bf1f396952dc6bf592e7d4fb82d700da2e5deac6"
42
+ },
43
+ {
44
+ "author": "beachball",
45
+ "package": "@ms-cloudpack/cli",
46
+ "comment": "Bump @ms-cloudpack/package-utilities to v0.12.0",
47
+ "commit": "bf1f396952dc6bf592e7d4fb82d700da2e5deac6"
48
+ }
49
+ ]
50
+ }
51
+ },
52
+ {
53
+ "date": "Wed, 21 Sep 2022 08:15:19 GMT",
6
54
  "tag": "@ms-cloudpack/cli_v0.10.1",
7
55
  "version": "0.10.1",
8
56
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,31 @@
1
1
  # Change Log - @ms-cloudpack/cli
2
2
 
3
- This log was last generated on Wed, 21 Sep 2022 08:14:52 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 23 Sep 2022 08:12:48 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.10.3
8
+
9
+ Fri, 23 Sep 2022 08:12:48 GMT
10
+
11
+ ### Patches
12
+
13
+ - Bump @ms-cloudpack/bundler to v0.4.4
14
+ - Bump @ms-cloudpack/package-utilities to v0.12.1
15
+
16
+ ## 0.10.2
17
+
18
+ Thu, 22 Sep 2022 08:15:14 GMT
19
+
20
+ ### Patches
21
+
22
+ - Moving typings file to root of cli project. (dzearing@microsoft.com)
23
+ - Bump @ms-cloudpack/bundler to v0.4.3
24
+ - Bump @ms-cloudpack/package-utilities to v0.12.0
25
+
7
26
  ## 0.10.1
8
27
 
9
- Wed, 21 Sep 2022 08:14:52 GMT
28
+ Wed, 21 Sep 2022 08:15:19 GMT
10
29
 
11
30
  ### Patches
12
31
 
@@ -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.1",
3
+ "version": "0.10.3",
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,12 +16,12 @@
16
16
  "cloudpack": "./lib/cloudpack.js"
17
17
  },
18
18
  "dependencies": {
19
- "@ms-cloudpack/bundler": "^0.4.2",
19
+ "@ms-cloudpack/bundler": "^0.4.4",
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.11.0",
24
+ "@ms-cloudpack/package-utilities": "^0.12.1",
25
25
  "@ms-cloudpack/path-utilities": "^0.5.0",
26
26
  "chokidar": "^3.5.3",
27
27
  "commander": "^9.1.0",
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/commands/start/types.ts"],"names":[],"mappings":""}