@ms-cloudpack/cli 0.0.7 → 0.1.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/CHANGELOG.json CHANGED
@@ -2,7 +2,46 @@
2
2
  "name": "@ms-cloudpack/cli",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 19 May 2022 21:03:49 GMT",
5
+ "date": "Fri, 20 May 2022 04:25:53 GMT",
6
+ "tag": "@ms-cloudpack/cli_v0.1.0",
7
+ "version": "0.1.0",
8
+ "comments": {
9
+ "minor": [
10
+ {
11
+ "author": "dzearing@microsoft.com",
12
+ "package": "@ms-cloudpack/cli",
13
+ "commit": "b39bb143fc53e622c39f9e9fd349f71c9ebadd77",
14
+ "comment": "Integrating ori-api"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@ms-cloudpack/cli",
19
+ "comment": "Bump @ms-cloudpack/bundler to v0.1.0",
20
+ "commit": "b39bb143fc53e622c39f9e9fd349f71c9ebadd77"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@ms-cloudpack/cli",
25
+ "comment": "Bump @ms-cloudpack/create-express-app to v0.1.0",
26
+ "commit": "b39bb143fc53e622c39f9e9fd349f71c9ebadd77"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@ms-cloudpack/cli",
31
+ "comment": "Bump @ms-cloudpack/package-utilities to v0.2.0",
32
+ "commit": "b39bb143fc53e622c39f9e9fd349f71c9ebadd77"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@ms-cloudpack/cli",
37
+ "comment": "Bump @ms-cloudpack/path-utilities to v0.2.0",
38
+ "commit": "b39bb143fc53e622c39f9e9fd349f71c9ebadd77"
39
+ }
40
+ ]
41
+ }
42
+ },
43
+ {
44
+ "date": "Thu, 19 May 2022 21:04:02 GMT",
6
45
  "tag": "@ms-cloudpack/cli_v0.0.7",
7
46
  "version": "0.0.7",
8
47
  "comments": {
@@ -11,13 +50,13 @@
11
50
  "author": "beachball",
12
51
  "package": "@ms-cloudpack/cli",
13
52
  "comment": "Bump @ms-cloudpack/bundler to v0.0.7",
14
- "commit": "d701b1fd3997bfb2f2c67f06a94bd79fadbcac6d"
53
+ "commit": "9bd9230fc985c94b2ad7d32a1abadada2fa75852"
15
54
  },
16
55
  {
17
56
  "author": "beachball",
18
57
  "package": "@ms-cloudpack/cli",
19
58
  "comment": "Bump @ms-cloudpack/package-utilities to v0.1.7",
20
- "commit": "d701b1fd3997bfb2f2c67f06a94bd79fadbcac6d"
59
+ "commit": "9bd9230fc985c94b2ad7d32a1abadada2fa75852"
21
60
  }
22
61
  ]
23
62
  }
package/CHANGELOG.md CHANGED
@@ -1,12 +1,24 @@
1
1
  # Change Log - @ms-cloudpack/cli
2
2
 
3
- This log was last generated on Thu, 19 May 2022 21:03:49 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 20 May 2022 04:25:53 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.1.0
8
+
9
+ Fri, 20 May 2022 04:25:53 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - Integrating ori-api (dzearing@microsoft.com)
14
+ - Bump @ms-cloudpack/bundler to v0.1.0
15
+ - Bump @ms-cloudpack/create-express-app to v0.1.0
16
+ - Bump @ms-cloudpack/package-utilities to v0.2.0
17
+ - Bump @ms-cloudpack/path-utilities to v0.2.0
18
+
7
19
  ## 0.0.7
8
20
 
9
- Thu, 19 May 2022 21:03:49 GMT
21
+ Thu, 19 May 2022 21:04:02 GMT
10
22
 
11
23
  ### Patches
12
24
 
@@ -0,0 +1,5 @@
1
+ import type { Session } from './types.js';
2
+ export interface SessionOptions {
3
+ appPath: string;
4
+ }
5
+ export declare function createSession(options: SessionOptions): Promise<Session>;
@@ -0,0 +1,21 @@
1
+ import { v4 as uuid } from 'uuid';
2
+ import { createResolveMap } from '@ms-cloudpack/package-utilities';
3
+ import fs from 'fs';
4
+ import path from 'path';
5
+ export async function createSession(options) {
6
+ const { appPath } = options;
7
+ const id = uuid();
8
+ // Grab the installed dependency locations.
9
+ console.log(`Resolving dependencies...`);
10
+ const resolveMap = await createResolveMap({ appPath });
11
+ fs.writeFileSync(path.join(process.cwd(), 'resolve-map.json'), JSON.stringify(resolveMap, null, 2));
12
+ console.log(`Resolved dependencies. (${Object.keys(resolveMap).length} total)`);
13
+ return {
14
+ id,
15
+ appPath,
16
+ type: 'web-app',
17
+ mode: 'library',
18
+ resolveMap,
19
+ };
20
+ }
21
+ //# sourceMappingURL=createSession.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createSession.js","sourceRoot":"","sources":["../../../src/commands/start/createSession.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,IAAI,IAAI,EAAE,MAAM,MAAM,CAAC;AAElC,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,IAAI,MAAM,MAAM,CAAC;AAMxB,MAAM,CAAC,KAAK,UAAU,aAAa,CAAC,OAAuB;IACzD,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC;IAC5B,MAAM,EAAE,GAAG,IAAI,EAAE,CAAC;IAElB,2CAA2C;IAC3C,OAAO,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAC;IAEzC,MAAM,UAAU,GAAG,MAAM,gBAAgB,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC;IAEvD,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,kBAAkB,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;IAEpG,OAAO,CAAC,GAAG,CAAC,2BAA2B,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,SAAS,CAAC,CAAC;IAEhF,OAAO;QACL,EAAE;QACF,OAAO;QACP,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,SAAS;QACf,UAAU;KACX,CAAC;AACJ,CAAC"}
@@ -1,3 +1,4 @@
1
+ /* Defines the "start" verb. */
1
2
  export function init(command) {
2
3
  command
3
4
  .command('start')
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/commands/start/index.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,IAAI,CAAC,OAAgB;IACnC,OAAO;SACJ,OAAO,CAAC,OAAO,CAAC;SAChB,WAAW,CAAC,0DAA0D,CAAC;SACvE,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,MAAM,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC;AAC9D,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/commands/start/index.ts"],"names":[],"mappings":"AAEA,+BAA+B;AAC/B,MAAM,UAAU,IAAI,CAAC,OAAgB;IACnC,OAAO;SACJ,OAAO,CAAC,OAAO,CAAC;SAChB,WAAW,CAAC,0DAA0D,CAAC;SACvE,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,MAAM,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC;AAC9D,CAAC"}
@@ -1 +1,4 @@
1
+ /**
2
+ * Defines the "start" verb entry point.
3
+ */
1
4
  export declare function start(): Promise<void>;
@@ -1,26 +1,22 @@
1
+ import { createSession } from './createSession.js';
1
2
  import { startBundleServer } from './startBundleServer.js';
2
- import { openBrowser } from './openBrowser.js';
3
- import { startAppServer } from './startAppServer.js';
4
- import { v4 as uuid } from 'uuid';
3
+ /**
4
+ * Defines the "start" verb entry point.
5
+ */
5
6
  export async function start() {
6
7
  const appPath = process.cwd();
7
- const id = uuid();
8
8
  // Initialize session definition.
9
- const session = {
10
- id,
11
- appPath,
12
- type: 'web-app',
13
- mode: 'library',
14
- };
15
- // Start the bundle and html server for this session.
16
- const [bundleServer, appServer] = await Promise.all([startBundleServer(session), startAppServer()]);
9
+ const session = await createSession({ appPath });
10
+ const bundleServer = await startBundleServer(session);
11
+ // TODO: Re-enable the app server once it's online.
12
+ // const [bundleServer, appServer] = await Promise.all([startBundleServer(session), startAppServer()]);
17
13
  // Close things on completion.
18
14
  process.on('SIGINT', async function () {
19
15
  bundleServer.close();
20
- appServer.close();
16
+ // appServer.close();
21
17
  process.exit(0);
22
18
  });
23
- // Open the browser.
24
- openBrowser(`http://localhost:${appServer.port}`);
19
+ // TODO: Uncomment when app server is added back. Open the browser.
20
+ // openBrowser(`http://localhost:${appServer.port}`);
25
21
  }
26
22
  //# sourceMappingURL=start.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"start.js","sourceRoot":"","sources":["../../../src/commands/start/start.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAE/C,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,EAAE,IAAI,IAAI,EAAE,MAAM,MAAM,CAAC;AAElC,MAAM,CAAC,KAAK,UAAU,KAAK;IACzB,MAAM,OAAO,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC;IAC9B,MAAM,EAAE,GAAG,IAAI,EAAE,CAAC;IAElB,iCAAiC;IACjC,MAAM,OAAO,GAAY;QACvB,EAAE;QACF,OAAO;QACP,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,SAAS;KAChB,CAAC;IAEF,qDAAqD;IACrD,MAAM,CAAC,YAAY,EAAE,SAAS,CAAC,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC,CAAC,iBAAiB,CAAC,OAAO,CAAC,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC;IAEpG,8BAA8B;IAC9B,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,KAAK;QACxB,YAAY,CAAC,KAAK,EAAE,CAAC;QACrB,SAAS,CAAC,KAAK,EAAE,CAAC;QAClB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC,CAAC,CAAC;IAEH,oBAAoB;IACpB,WAAW,CAAC,oBAAoB,SAAS,CAAC,IAAI,EAAE,CAAC,CAAC;AACpD,CAAC"}
1
+ {"version":3,"file":"start.js","sourceRoot":"","sources":["../../../src/commands/start/start.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,KAAK;IACzB,MAAM,OAAO,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC;IAE9B,iCAAiC;IACjC,MAAM,OAAO,GAAG,MAAM,aAAa,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC;IACjD,MAAM,YAAY,GAAG,MAAM,iBAAiB,CAAC,OAAO,CAAC,CAAC;IAEtD,mDAAmD;IACnD,uGAAuG;IAEvG,8BAA8B;IAC9B,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,KAAK;QACxB,YAAY,CAAC,KAAK,EAAE,CAAC;QACrB,qBAAqB;QACrB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC,CAAC,CAAC;IAEH,mEAAmE;IACnE,qDAAqD;AACvD,CAAC"}
@@ -1,63 +1,70 @@
1
1
  import { bundlePackage } from '@ms-cloudpack/bundler';
2
2
  import { createExpressApp } from '@ms-cloudpack/create-express-app';
3
3
  import { readJson, writeJsonSync } from '@ms-cloudpack/json-utilities';
4
- import { createResolveMap, isExternalPackage } from '@ms-cloudpack/package-utilities';
4
+ import { isExternalPackage } from '@ms-cloudpack/package-utilities';
5
5
  import { slash } from '@ms-cloudpack/path-utilities';
6
6
  import filenamify from 'filenamify';
7
- import { ensureDir } from 'fs-extra';
7
+ import fsExtra from 'fs-extra';
8
8
  import hash from 'object-hash';
9
9
  import os from 'os';
10
10
  import path from 'path';
11
11
  import { parseRequestInfo } from './parseRequestInfo.js';
12
+ const { ensureDir } = fsExtra;
12
13
  const bundleLookupPath = path.join(os.tmpdir(), 'cloudpack-output', 'all-bundles.json');
13
14
  export async function startBundleServer(session) {
14
- const { appPath } = session;
15
- const bundleActions = (await readJson(bundleLookupPath)) || {};
16
- const pendingActions = {};
17
- // Grab the installed dependency locations.
18
- console.log(`BundleServer: Resolving dependencies...`);
19
- const { resolveMap, stats } = await createResolveMap({ appPath });
20
- console.log(`BundleServer: Resolved dependencies.`, stats);
15
+ const createdBundles = (await readJson(bundleLookupPath)) || {};
16
+ const pendingBundles = {};
17
+ const { resolveMap } = session;
21
18
  const { server, port } = await createExpressApp([5500, 5501, 5502, 5503], (app) => {
22
19
  // Set up the express app routes.
23
20
  app.get('*', async (req, res) => {
24
21
  const requestPath = slash(req.path.substring(1));
25
- const requestExt = path.extname(requestPath);
26
- const requestInfo = parseRequestInfo(requestPath);
27
- const packagePath = resolveMap[requestInfo.packageName]?.path;
22
+ const { packageName, version, filePath } = parseRequestInfo(requestPath);
23
+ const packagePath = resolveMap[`${packageName}@${version}`]?.path;
28
24
  const isExternal = isExternalPackage(packagePath);
29
25
  const force = req.query.force;
30
- console.log(`BundleServer: Request: "${requestInfo.packageName}@${requestInfo.version}${requestInfo.filePath}"`);
31
- // If there are invalid arguments, 400.
32
- if (!requestPath || !requestExt || !requestInfo.packageName || !requestInfo.version) {
33
- console.log(`BundleServer: Response (400): "${requestInfo.packageName}@${requestInfo.version}${requestInfo.filePath}"`);
26
+ console.log(`BundleServer: Request: "${packageName}@${version}${filePath}"`);
27
+ // If the package is missing, invalid arguments.
28
+ if (!requestPath || !packageName) {
29
+ console.log(`BundleServer: Response (400): "${packageName}@${version}${filePath}"`);
34
30
  res.status(400).send(`Requests must be in the format "/{packageName}@{version}/path/file.ext".`);
35
31
  return;
36
32
  }
33
+ // If the version is missing, redirect to the primary version.
34
+ if (!version) {
35
+ const resolvedPackage = resolveMap[packageName];
36
+ if (!resolvedPackage) {
37
+ console.log(`BundleServer: Response (404): Unrecognized package "${packageName}"`);
38
+ res.status(404).send(`Unrecognized package "${packageName}".`);
39
+ return;
40
+ }
41
+ res.redirect(`/${packageName}@${resolvedPackage.version}/${filePath}`);
42
+ return;
43
+ }
37
44
  // If it's an unrecognized package, 404.
38
45
  if (!packagePath) {
39
- console.log(`BundleServer: Response (404): "${requestInfo.packageName}@${requestInfo.version}${requestInfo.filePath}"`);
46
+ console.log(`BundleServer: Response (404): "${packageName}@${version}${filePath}"`);
40
47
  res.status(404).send(`The requested package "${packagePath}" is not available.`);
41
48
  return;
42
49
  }
43
50
  // Create an identifier for the bundle.
44
51
  const bundleId = hash({
45
- name: requestInfo.packageName,
46
- version: isExternal ? requestInfo.version : packagePath,
52
+ name: packageName,
53
+ version: isExternal ? version : packagePath,
47
54
  mode: session.mode,
48
55
  });
49
56
  // Derive where the output should be.
50
- const outputPath = path.join(os.tmpdir(), 'cloudpack-output', `${filenamify(requestInfo.packageName)}-${session.mode}-${requestInfo.version}-${bundleId}`);
51
- let action = bundleActions[bundleId];
57
+ const outputPath = path.join(os.tmpdir(), 'cloudpack-output', `${filenamify(packageName)}-${session.mode}-${version}-${bundleId}`);
58
+ let action = createdBundles[bundleId];
52
59
  // If we haven't completed this bundle, enqueue it or piggyback on an existing run.
53
60
  if (!action || force) {
54
- let pendingAction = pendingActions[bundleId];
61
+ let pendingAction = pendingBundles[bundleId];
55
62
  // Either latch on to a pending request or create a new one.
56
63
  if (!pendingAction) {
57
- pendingAction = pendingActions[bundleId] = new Promise((resolve) => {
58
- // Define a helper function so that we can await on async operations.
64
+ pendingAction = pendingBundles[bundleId] = new Promise((resolve) => {
65
+ // Async helper so that we can await and call resolve.
59
66
  async function createBundle() {
60
- console.log(`BundleServer: No previous action found, bundling: "${requestInfo.packageName}@${requestInfo.version}${requestInfo.filePath}"`);
67
+ console.log(`BundleServer: No previous action found, bundling: "${packageName}@${version}${filePath}"`);
61
68
  await ensureDir(outputPath);
62
69
  const bundlerResult = await bundlePackage({
63
70
  packagePath,
@@ -65,44 +72,46 @@ export async function startBundleServer(session) {
65
72
  outputType: 'library',
66
73
  });
67
74
  console.log(`BundleServer: Bundle complete: ${outputPath}`);
68
- bundleActions[bundleId] = {
75
+ createdBundles[bundleId] = {
69
76
  id: bundleId,
70
- packageName: requestInfo.packageName,
71
- packageVersion: requestInfo.version,
77
+ packageName: packageName,
78
+ packageVersion: version,
79
+ packagePath,
72
80
  outputPath,
73
81
  result: bundlerResult.errors?.length == 0 ? 'success' : 'errors',
74
82
  errors: bundlerResult.errors,
75
83
  warnings: bundlerResult.warnings,
76
84
  };
77
- delete pendingActions[bundleId];
78
- return bundleActions[bundleId];
85
+ delete pendingBundles[bundleId];
86
+ return createdBundles[bundleId];
79
87
  }
80
88
  // Call the async function and tie it in with the promise.
81
89
  createBundle().then(resolve);
82
90
  });
83
91
  }
84
92
  else {
85
- console.log(`BundleServer: Previous action found, waiting: "${requestInfo.packageName}@${requestInfo.version}${requestInfo.filePath}"`);
93
+ console.log(`BundleServer: Previous action found, waiting: "${packageName}@${version}${filePath}"`);
86
94
  }
87
95
  action = await pendingAction;
88
96
  }
89
97
  else {
90
- console.log(`BundleServer: Bundle cached, returning: "${requestInfo.packageName}@${requestInfo.version}${requestInfo.filePath}"`);
98
+ console.log(`BundleServer: Bundle cached, returning: "${packageName}@${version}${filePath}"`);
91
99
  }
92
100
  // At this point we should have an action compeleted.
93
101
  if (action.result === 'errors') {
94
102
  res.status(500).type('json').send(action);
95
103
  }
96
104
  else {
97
- console.log(`BundleServer: Bundle returning: "${requestInfo.packageName}@${requestInfo.version}${requestInfo.filePath}"`);
105
+ console.log(`BundleServer: Bundle returning: "${packageName}@${version}${filePath}"`);
98
106
  // Try to return the result.
99
- res.sendFile(path.join(outputPath, requestInfo.filePath));
107
+ res.sendFile(path.join(outputPath, filePath));
100
108
  }
101
109
  });
102
110
  });
111
+ console.log(`Bundle server started (http://localhost:${port})`);
103
112
  return {
104
113
  close: () => {
105
- writeJsonSync(bundleLookupPath, bundleActions);
114
+ writeJsonSync(bundleLookupPath, createdBundles);
106
115
  server.close();
107
116
  },
108
117
  port,
@@ -1 +1 @@
1
- {"version":3,"file":"startBundleServer.js","sourceRoot":"","sources":["../../../src/commands/start/startBundleServer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"startBundleServer.js","sourceRoot":"","sources":["../../../src/commands/start/startBundleServer.ts"],"names":[],"mappings":"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"}
@@ -1,3 +1,4 @@
1
+ import type { ResolveMap } from '@ms-cloudpack/package-utilities';
1
2
  export interface Session {
2
3
  /**
3
4
  * The session id, used for identifying
@@ -21,4 +22,8 @@ export interface Session {
21
22
  * the browser.
22
23
  */
23
24
  mode: 'library' | 'development' | 'production';
25
+ /**
26
+ * Used to resolve packages in the dependency graph.
27
+ */
28
+ resolveMap: ResolveMap;
24
29
  }
@@ -0,0 +1 @@
1
+ export declare function getVersion(): string;
@@ -0,0 +1,10 @@
1
+ import path from 'path';
2
+ import { fileURLToPath } from 'url';
3
+ import { findPackageRoot } from '@ms-cloudpack/path-utilities';
4
+ import { readJsonSync } from '@ms-cloudpack/json-utilities';
5
+ export function getVersion() {
6
+ const packageJSONpath = path.join(findPackageRoot(path.dirname(fileURLToPath(import.meta.url))), 'package.json');
7
+ const definition = readJsonSync(packageJSONpath);
8
+ return definition.version;
9
+ }
10
+ //# sourceMappingURL=getVersion.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getVersion.js","sourceRoot":"","sources":["../src/getVersion.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AACpC,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAG5D,MAAM,UAAU,UAAU;IACxB,MAAM,eAAe,GAAG,IAAI,CAAC,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC;IACjH,MAAM,UAAU,GAAG,YAAY,CAAC,eAAe,CAAsB,CAAC;IAEtE,OAAO,UAAU,CAAC,OAAO,CAAC;AAC5B,CAAC"}
package/lib/index.d.ts CHANGED
@@ -1 +1,5 @@
1
+ /**
2
+ * Entry point for the cloudpack CLI. Resolves all commands defined
3
+ * within the "./commands" folder.
4
+ */
1
5
  export declare function start(): Promise<void>;
package/lib/index.js CHANGED
@@ -2,15 +2,23 @@ import { Command } from 'commander';
2
2
  import glob from 'glob';
3
3
  import path from 'path';
4
4
  import { fileURLToPath, pathToFileURL } from 'url';
5
+ import { getVersion } from './getVersion.js';
5
6
  const currentPath = path.dirname(fileURLToPath(import.meta.url));
7
+ /**
8
+ * Entry point for the cloudpack CLI. Resolves all commands defined
9
+ * within the "./commands" folder.
10
+ */
6
11
  export async function start() {
7
12
  const program = new Command();
8
- program.name('cloudpack').usage('<command> [options]');
13
+ program.name('cloudpack').version(getVersion()).usage('<command> [options]');
9
14
  const commands = glob.sync('commands/*/index.js', { cwd: currentPath });
10
15
  for (const commandPath of commands) {
11
16
  const command = await import(pathToFileURL(path.resolve(currentPath, commandPath)).toString());
12
17
  command.init(program);
13
18
  }
14
19
  program.parse(process.argv);
20
+ if (program.args.length === 0) {
21
+ program.help();
22
+ }
15
23
  }
16
24
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AAEnD,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AAEjE,MAAM,CAAC,KAAK,UAAU,KAAK;IACzB,MAAM,OAAO,GAAG,IAAI,OAAO,EAAE,CAAC;IAE9B,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC;IAEvD,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,qBAAqB,EAAE,EAAE,GAAG,EAAE,WAAW,EAAE,CAAC,CAAC;IAExE,KAAK,MAAM,WAAW,IAAI,QAAQ,EAAE;QAClC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC;QAE/F,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;KACvB;IAED,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;AAC9B,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AACnD,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAE7C,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AAEjE;;;GAGG;AACH,MAAM,CAAC,KAAK,UAAU,KAAK;IACzB,MAAM,OAAO,GAAG,IAAI,OAAO,EAAE,CAAC;IAE9B,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC;IAE7E,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,qBAAqB,EAAE,EAAE,GAAG,EAAE,WAAW,EAAE,CAAC,CAAC;IAExE,KAAK,MAAM,WAAW,IAAI,QAAQ,EAAE;QAClC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC;QAE/F,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;KACvB;IAED,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IAE5B,IAAI,OAAO,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE;QAC7B,OAAO,CAAC,IAAI,EAAE,CAAC;KAChB;AACH,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ms-cloudpack/cli",
3
- "version": "0.0.7",
3
+ "version": "0.1.0",
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,11 +16,11 @@
16
16
  "cloudpack": "./lib/cloudpack.js"
17
17
  },
18
18
  "dependencies": {
19
- "@ms-cloudpack/bundler": "^0.0.7",
20
- "@ms-cloudpack/create-express-app": "^0.0.2",
19
+ "@ms-cloudpack/bundler": "^0.1.0",
20
+ "@ms-cloudpack/create-express-app": "^0.1.0",
21
21
  "@ms-cloudpack/json-utilities": "^0.0.3",
22
- "@ms-cloudpack/package-utilities": "^0.1.7",
23
- "@ms-cloudpack/path-utilities": "^0.1.0",
22
+ "@ms-cloudpack/package-utilities": "^0.2.0",
23
+ "@ms-cloudpack/path-utilities": "^0.2.0",
24
24
  "commander": "^9.1.0",
25
25
  "filenamify": "^5.1.0",
26
26
  "fs-extra": "^10.1.0",
@@ -1,11 +0,0 @@
1
- // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
- // It should be published with your NPM package. It should not be tracked by Git.
3
- {
4
- "tsdocVersion": "0.12",
5
- "toolPackages": [
6
- {
7
- "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.24.0"
9
- }
10
- ]
11
- }