@ms-cloudpack/bundler 0.11.25 → 0.11.27

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.
@@ -1,2 +1,3 @@
1
1
  import type { Bundler } from '@ms-cloudpack/bundler-types';
2
2
  export declare const allBundlers: Record<string, () => Promise<Bundler>>;
3
+ //# sourceMappingURL=allBundlers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"allBundlers.d.ts","sourceRoot":"","sources":["../src/allBundlers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAE3D,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,OAAO,CAAC,OAAO,CAAC,CAG9D,CAAC"}
package/lib/bundle.d.ts CHANGED
@@ -4,3 +4,4 @@ import type { BundleOptions, BundleResult } from '@ms-cloudpack/bundler-types';
4
4
  * advanced api surface.
5
5
  */
6
6
  export declare function bundle(options: BundleOptions): Promise<BundleResult>;
7
+ //# sourceMappingURL=bundle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle.d.ts","sourceRoot":"","sources":["../src/bundle.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAI/E;;;GAGG;AACH,wBAAsB,MAAM,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC,YAAY,CAAC,CAyD1E"}
@@ -6,3 +6,4 @@ export interface BundlePackageOptions extends Omit<BundleOptions, 'entries'> {
6
6
  * Abstracted consumer input to the bundlePackage API.
7
7
  */
8
8
  export declare function bundlePackage(options: BundlePackageOptions): Promise<BundleResult>;
9
+ //# sourceMappingURL=bundlePackage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundlePackage.d.ts","sourceRoot":"","sources":["../src/bundlePackage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAKxG,MAAM,WAAW,oBAAqB,SAAQ,IAAI,CAAC,aAAa,EAAE,SAAS,CAAC;IAC1E,QAAQ,CAAC,EAAE,uBAAuB,CAAC;CACpC;AAED;;GAEG;AACH,wBAAsB,aAAa,CAAC,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,YAAY,CAAC,CASxF"}
@@ -5,3 +5,4 @@ import type { Bundler, BundleOptions } from '@ms-cloudpack/bundler-types';
5
5
  * @returns A bundler plugin.
6
6
  */
7
7
  export declare function chooseBundler(options: BundleOptions): Promise<Bundler>;
8
+ //# sourceMappingURL=chooseBundler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chooseBundler.d.ts","sourceRoot":"","sources":["../src/chooseBundler.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAI1E;;;;GAIG;AACH,wBAAsB,aAAa,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC,OAAO,CAAC,CAe5E"}
@@ -8,3 +8,4 @@ export declare function getEntriesMapFromPackage(options: {
8
8
  inputPath: string;
9
9
  packages?: PackageDefinitionsCache;
10
10
  }): Promise<Record<string, string>>;
11
+ //# sourceMappingURL=getEntriesMapFromPackage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getEntriesMapFromPackage.d.ts","sourceRoot":"","sources":["../src/getEntriesMapFromPackage.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAM3E;;;;GAIG;AACH,wBAAsB,wBAAwB,CAAC,OAAO,EAAE;IACtD,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,uBAAuB,CAAC;CACpC,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAgClC"}
@@ -6,3 +6,4 @@ export declare function getExternalsFromPackage(options: {
6
6
  inputPath: string;
7
7
  packages?: PackageDefinitionsCache;
8
8
  }): Promise<string[]>;
9
+ //# sourceMappingURL=getExternalsFromPackage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getExternalsFromPackage.d.ts","sourceRoot":"","sources":["../src/getExternalsFromPackage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAG3E;;GAEG;AACH,wBAAsB,uBAAuB,CAAC,OAAO,EAAE;IACrD,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,uBAAuB,CAAC;CACpC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAiBpB"}
package/lib/index.d.ts CHANGED
@@ -2,3 +2,4 @@ export { bundle } from './bundle.js';
2
2
  export { bundlePackage, type BundlePackageOptions } from './bundlePackage.js';
3
3
  export { isValidBundleEntry } from './isValidBundleEntry.js';
4
4
  export { getEntriesMapFromPackage } from './getEntriesMapFromPackage.js';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,OAAO,EAAE,aAAa,EAAE,KAAK,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC9E,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC"}
@@ -1 +1,2 @@
1
1
  export declare function isValidBundleEntry(filePath: string): boolean;
2
+ //# sourceMappingURL=isValidBundleEntry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"isValidBundleEntry.d.ts","sourceRoot":"","sources":["../src/isValidBundleEntry.ts"],"names":[],"mappings":"AAqBA,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAE5D"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ms-cloudpack/bundler",
3
- "version": "0.11.25",
3
+ "version": "0.11.27",
4
4
  "description": "An abstraction to bundle source code.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -14,10 +14,10 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "@ms-cloudpack/json-utilities": "^0.0.6",
17
- "@ms-cloudpack/bundler-plugin-ori": "^0.8.5",
18
- "@ms-cloudpack/bundler-plugin-rollup": "^0.6.14",
19
- "@ms-cloudpack/bundler-types": "^0.12.0",
20
- "@ms-cloudpack/package-utilities": "^2.4.0",
17
+ "@ms-cloudpack/bundler-plugin-ori": "^0.8.7",
18
+ "@ms-cloudpack/bundler-plugin-rollup": "^0.6.15",
19
+ "@ms-cloudpack/bundler-types": "^0.12.1",
20
+ "@ms-cloudpack/package-utilities": "^2.4.1",
21
21
  "@ms-cloudpack/path-string-parsing": "^1.0.1",
22
22
  "@ms-cloudpack/path-utilities": "^2.2.1"
23
23
  },