@ms-cloudpack/cli 0.39.10 → 0.39.12
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/commands/bundle/bundle.d.ts +4 -1
- package/lib/commands/bundle/bundle.d.ts.map +1 -1
- package/lib/commands/bundle/bundle.js +1 -2
- package/lib/commands/bundle/bundle.js.map +1 -1
- package/lib/commands/bundle/index.d.ts +2 -2
- package/lib/commands/bundle/index.d.ts.map +1 -1
- package/lib/commands/bundle/index.js +3 -3
- package/lib/commands/bundle/index.js.map +1 -1
- package/lib/commands/dashboard/index.d.ts +2 -2
- package/lib/commands/dashboard/index.d.ts.map +1 -1
- package/lib/commands/dashboard/index.js +2 -2
- package/lib/commands/dashboard/index.js.map +1 -1
- package/lib/commands/init/bundleAndGetImports.d.ts +2 -0
- package/lib/commands/init/bundleAndGetImports.d.ts.map +1 -1
- package/lib/commands/init/bundleAndGetImports.js +1 -2
- package/lib/commands/init/bundleAndGetImports.js.map +1 -1
- package/lib/commands/init/findImports.d.ts.map +1 -1
- package/lib/commands/init/findImports.js +15 -2
- package/lib/commands/init/findImports.js.map +1 -1
- package/lib/commands/init/index.d.ts +2 -2
- package/lib/commands/init/index.d.ts.map +1 -1
- package/lib/commands/init/index.js +4 -5
- package/lib/commands/init/index.js.map +1 -1
- package/lib/commands/init/init.d.ts +4 -1
- package/lib/commands/init/init.d.ts.map +1 -1
- package/lib/commands/init/init.js +3 -3
- package/lib/commands/init/init.js.map +1 -1
- package/lib/commands/start/appServer/startAppServer.d.ts +3 -1
- package/lib/commands/start/appServer/startAppServer.d.ts.map +1 -1
- package/lib/commands/start/appServer/startAppServer.js +1 -2
- package/lib/commands/start/appServer/startAppServer.js.map +1 -1
- package/lib/commands/start/createBundleTask.d.ts +2 -1
- package/lib/commands/start/createBundleTask.d.ts.map +1 -1
- package/lib/commands/start/createBundleTask.js +2 -2
- package/lib/commands/start/createBundleTask.js.map +1 -1
- package/lib/commands/start/createSession.d.ts +4 -1
- package/lib/commands/start/createSession.d.ts.map +1 -1
- package/lib/commands/start/createSession.js +2 -2
- package/lib/commands/start/createSession.js.map +1 -1
- package/lib/commands/start/index.d.ts +2 -2
- package/lib/commands/start/index.d.ts.map +1 -1
- package/lib/commands/start/index.js +3 -3
- package/lib/commands/start/index.js.map +1 -1
- package/lib/commands/start/start.d.ts +4 -1
- package/lib/commands/start/start.d.ts.map +1 -1
- package/lib/commands/start/start.js +4 -4
- package/lib/commands/start/start.js.map +1 -1
- package/lib/commands/start/startBundleServer.d.ts +3 -1
- package/lib/commands/start/startBundleServer.d.ts.map +1 -1
- package/lib/commands/start/startBundleServer.js +5 -5
- package/lib/commands/start/startBundleServer.js.map +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +7 -10
- package/lib/index.js.map +1 -1
- package/lib/initReporter.d.ts +4 -0
- package/lib/initReporter.d.ts.map +1 -0
- package/lib/initReporter.js +7 -0
- package/lib/initReporter.js.map +1 -0
- package/lib/initTelemetry.d.ts +2 -1
- package/lib/initTelemetry.d.ts.map +1 -1
- package/lib/initTelemetry.js +4 -1
- package/lib/initTelemetry.js.map +1 -1
- package/lib/tasks/bundleTask.d.ts +3 -1
- package/lib/tasks/bundleTask.d.ts.map +1 -1
- package/lib/tasks/bundleTask.js +10 -5
- package/lib/tasks/bundleTask.js.map +1 -1
- package/lib/tasks/resolveDependenciesTask.d.ts +3 -0
- package/lib/tasks/resolveDependenciesTask.d.ts.map +1 -1
- package/lib/tasks/resolveDependenciesTask.js +1 -2
- package/lib/tasks/resolveDependenciesTask.js.map +1 -1
- package/lib/types/CommandFunction.d.ts +7 -0
- package/lib/types/CommandFunction.d.ts.map +1 -0
- package/lib/types/CommandFunction.js +2 -0
- package/lib/types/CommandFunction.js.map +1 -0
- package/package.json +8 -8
- package/lib/reporter.d.ts +0 -5
- package/lib/reporter.d.ts.map +0 -1
- package/lib/reporter.js +0 -9
- package/lib/reporter.js.map +0 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { type ResolveMap, type PackageDefinitions } from '@ms-cloudpack/package-utilities';
|
|
2
|
+
import { type TaskReporter } from '@ms-cloudpack/task-reporter';
|
|
2
3
|
/**
|
|
3
4
|
* Resolves the locations of dependencies and returns the resolve map, logging results
|
|
4
5
|
* to the task reporter.
|
|
@@ -8,5 +9,7 @@ export declare function resolveDependenciesTask({ appPath, additionalPaths, link
|
|
|
8
9
|
additionalPaths?: string[];
|
|
9
10
|
linkedPaths?: string[];
|
|
10
11
|
packages?: PackageDefinitions;
|
|
12
|
+
}, { reporter }: {
|
|
13
|
+
reporter: TaskReporter;
|
|
11
14
|
}): Promise<ResolveMap | undefined>;
|
|
12
15
|
//# sourceMappingURL=resolveDependenciesTask.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolveDependenciesTask.d.ts","sourceRoot":"","sources":["../../src/tasks/resolveDependenciesTask.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,UAAU,EAGf,KAAK,kBAAkB,EACxB,MAAM,iCAAiC,CAAC;
|
|
1
|
+
{"version":3,"file":"resolveDependenciesTask.d.ts","sourceRoot":"","sources":["../../src/tasks/resolveDependenciesTask.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,UAAU,EAGf,KAAK,kBAAkB,EACxB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAoC,KAAK,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAGlG;;;GAGG;AACH,wBAAsB,uBAAuB,CAC3C,EACE,OAAO,EACP,eAAe,EACf,WAAW,EACX,QAAQ,GACT,EAAE;IACD,OAAO,EAAE,MAAM,CAAC;IAChB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,QAAQ,CAAC,EAAE,kBAAkB,CAAC;CAC/B,EACD,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,YAAY,CAAA;CAAE,mCAmCzC"}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { createResolveMap, } from '@ms-cloudpack/package-utilities';
|
|
2
2
|
import { cyan, yellow, bulletedList, bold } from '@ms-cloudpack/task-reporter';
|
|
3
|
-
import { reporter } from '../reporter.js';
|
|
4
3
|
import { PerfMarkerCliEntry, PerfMeasurementTimeToResolveDependencies } from '../performance/markers.js';
|
|
5
4
|
/**
|
|
6
5
|
* Resolves the locations of dependencies and returns the resolve map, logging results
|
|
7
6
|
* to the task reporter.
|
|
8
7
|
*/
|
|
9
|
-
export async function resolveDependenciesTask({ appPath, additionalPaths, linkedPaths, packages, }) {
|
|
8
|
+
export async function resolveDependenciesTask({ appPath, additionalPaths, linkedPaths, packages, }, { reporter }) {
|
|
10
9
|
let resolveMap;
|
|
11
10
|
if (performance.getEntriesByName(PerfMarkerCliEntry).length) {
|
|
12
11
|
performance.measure(PerfMeasurementTimeToResolveDependencies, PerfMarkerCliEntry);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolveDependenciesTask.js","sourceRoot":"","sources":["../../src/tasks/resolveDependenciesTask.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,gBAAgB,GAGjB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,YAAY,EAAE,IAAI,
|
|
1
|
+
{"version":3,"file":"resolveDependenciesTask.js","sourceRoot":"","sources":["../../src/tasks/resolveDependenciesTask.ts"],"names":[],"mappings":"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","sourcesContent":["import {\n type ResolveMap,\n createResolveMap,\n type ResolveMapEntry,\n type PackageDefinitions,\n} from '@ms-cloudpack/package-utilities';\nimport { cyan, yellow, bulletedList, bold, type TaskReporter } from '@ms-cloudpack/task-reporter';\nimport { PerfMarkerCliEntry, PerfMeasurementTimeToResolveDependencies } from '../performance/markers.js';\n\n/**\n * Resolves the locations of dependencies and returns the resolve map, logging results\n * to the task reporter.\n */\nexport async function resolveDependenciesTask(\n {\n appPath,\n additionalPaths,\n linkedPaths,\n packages,\n }: {\n appPath: string;\n additionalPaths?: string[];\n linkedPaths?: string[];\n packages?: PackageDefinitions;\n },\n { reporter }: { reporter: TaskReporter },\n) {\n let resolveMap: ResolveMap | undefined;\n\n if (performance.getEntriesByName(PerfMarkerCliEntry).length) {\n performance.measure(PerfMeasurementTimeToResolveDependencies, PerfMarkerCliEntry);\n }\n // Grab the installed dependency locations.\n await reporter?.runTask('Resolving dependencies', async () => {\n resolveMap = await createResolveMap({\n appPath,\n additionalPaths,\n linkedPaths,\n useStrictVersioning: false,\n packages,\n });\n\n const { allPackages, duplicatedPackages } = getPackagesFromResolveMap(resolveMap);\n const message = `Found ${cyan(allPackages.size)} total packages, ${\n duplicatedPackages.size ? `${yellow(duplicatedPackages.size)} with multiple versions.` : `no duplicates.`\n }`;\n const extended = bulletedList(\n Array.from(duplicatedPackages.entries()).map(\n ([name, versions]) => `${bold(name)}: ${Array.from(versions).join(', ')}`,\n ),\n );\n\n return {\n message,\n extended,\n forceShow: true,\n };\n });\n\n return resolveMap;\n}\n\n/**\n * Given a resolveMap, returns a map of all packages and a map of packages with multiple versions.\n * This is used to log the results of the resolve task.\n */\nfunction getPackagesFromResolveMap(resolveMap: ResolveMap) {\n const allPackages = new Map<string, ResolveMapEntry>();\n const duplicatedPackages = new Map<string, Set<string>>();\n\n function addEntry(entry: ResolveMapEntry) {\n if (allPackages.has(entry.name)) {\n if (!duplicatedPackages.has(entry.name)) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n duplicatedPackages.set(entry.name, new Set([allPackages.get(entry.name)!.version]));\n }\n const dupeSet = duplicatedPackages.get(entry.name);\n\n dupeSet?.add(entry.version);\n } else {\n allPackages.set(entry.name, entry);\n }\n }\n\n for (const currentEntry of Object.values(resolveMap)) {\n addEntry(currentEntry);\n\n if (currentEntry.scopedVersions) {\n for (const scopedEntry of Object.values(currentEntry.scopedVersions)) {\n addEntry(scopedEntry);\n }\n }\n }\n\n return {\n allPackages,\n duplicatedPackages,\n };\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CommandFunction.d.ts","sourceRoot":"","sources":["../../src/types/CommandFunction.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,EAAE;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,QAAQ,EAAE,YAAY,CAAA;CAAE,KAAK,IAAI,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CommandFunction.js","sourceRoot":"","sources":["../../src/types/CommandFunction.ts"],"names":[],"mappings":"","sourcesContent":["import type { TaskReporter } from '@ms-cloudpack/task-reporter';\nimport type { Command } from 'commander';\n\nexport type CommandFunction = (options: { command: Command; reporter: TaskReporter }) => void;\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ms-cloudpack/cli",
|
|
3
|
-
"version": "0.39.
|
|
3
|
+
"version": "0.39.12",
|
|
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",
|
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
"cloudpack": "./bin/cloudpack.js"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@ms-cloudpack/api-server": "^0.6.
|
|
14
|
-
"@ms-cloudpack/bundler": "^0.13.
|
|
15
|
-
"@ms-cloudpack/config": "^0.7.
|
|
16
|
-
"@ms-cloudpack/create-express-app": "^1.3.
|
|
13
|
+
"@ms-cloudpack/api-server": "^0.6.17",
|
|
14
|
+
"@ms-cloudpack/bundler": "^0.13.3",
|
|
15
|
+
"@ms-cloudpack/config": "^0.7.4",
|
|
16
|
+
"@ms-cloudpack/create-express-app": "^1.3.7",
|
|
17
17
|
"@ms-cloudpack/data-bus": "^0.3.0",
|
|
18
18
|
"@ms-cloudpack/json-utilities": "^0.0.6",
|
|
19
19
|
"@ms-cloudpack/overlay": "^0.13.10",
|
|
20
|
-
"@ms-cloudpack/package-utilities": "^3.1.
|
|
20
|
+
"@ms-cloudpack/package-utilities": "^3.1.5",
|
|
21
21
|
"@ms-cloudpack/path-string-parsing": "^1.0.2",
|
|
22
|
-
"@ms-cloudpack/path-utilities": "^2.
|
|
23
|
-
"@ms-cloudpack/task-reporter": "^0.
|
|
22
|
+
"@ms-cloudpack/path-utilities": "^2.3.0",
|
|
23
|
+
"@ms-cloudpack/task-reporter": "^0.5.1",
|
|
24
24
|
"@ms-cloudpack/telemetry": "^0.3.3",
|
|
25
25
|
"chokidar": "^3.5.3",
|
|
26
26
|
"commander": "^10.0.0",
|
package/lib/reporter.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { TaskReporter, type TaskReporterOptions } from '@ms-cloudpack/task-reporter';
|
|
2
|
-
export declare const reporter: TaskReporter;
|
|
3
|
-
export declare function setReporterOptions(options: TaskReporterOptions): void;
|
|
4
|
-
export { noLoggingConfig, defaultLoggingConfig, verboseLoggingConfig, debugLoggingConfig, } from '@ms-cloudpack/task-reporter';
|
|
5
|
-
//# sourceMappingURL=reporter.d.ts.map
|
package/lib/reporter.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"reporter.d.ts","sourceRoot":"","sources":["../src/reporter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,KAAK,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AAErF,eAAO,MAAM,QAAQ,cAAqB,CAAC;AAI3C,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,mBAAmB,QAI9D;AAED,OAAO,EACL,eAAe,EACf,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,GACnB,MAAM,6BAA6B,CAAC"}
|
package/lib/reporter.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { TaskReporter } from '@ms-cloudpack/task-reporter';
|
|
2
|
-
export const reporter = new TaskReporter();
|
|
3
|
-
let lastOptions = {};
|
|
4
|
-
export function setReporterOptions(options) {
|
|
5
|
-
lastOptions = { ...lastOptions, ...options };
|
|
6
|
-
reporter.setOptions(lastOptions);
|
|
7
|
-
}
|
|
8
|
-
export { noLoggingConfig, defaultLoggingConfig, verboseLoggingConfig, debugLoggingConfig, } from '@ms-cloudpack/task-reporter';
|
|
9
|
-
//# sourceMappingURL=reporter.js.map
|
package/lib/reporter.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"reporter.js","sourceRoot":"","sources":["../src/reporter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAA4B,MAAM,6BAA6B,CAAC;AAErF,MAAM,CAAC,MAAM,QAAQ,GAAG,IAAI,YAAY,EAAE,CAAC;AAE3C,IAAI,WAAW,GAAG,EAAE,CAAC;AAErB,MAAM,UAAU,kBAAkB,CAAC,OAA4B;IAC7D,WAAW,GAAG,EAAE,GAAG,WAAW,EAAE,GAAG,OAAO,EAAE,CAAC;IAE7C,QAAQ,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;AACnC,CAAC;AAED,OAAO,EACL,eAAe,EACf,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,GACnB,MAAM,6BAA6B,CAAC","sourcesContent":["import { TaskReporter, type TaskReporterOptions } from '@ms-cloudpack/task-reporter';\n\nexport const reporter = new TaskReporter();\n\nlet lastOptions = {};\n\nexport function setReporterOptions(options: TaskReporterOptions) {\n lastOptions = { ...lastOptions, ...options };\n\n reporter.setOptions(lastOptions);\n}\n\nexport {\n noLoggingConfig,\n defaultLoggingConfig,\n verboseLoggingConfig,\n debugLoggingConfig,\n} from '@ms-cloudpack/task-reporter';\n"]}
|