@storm-software/projen 0.9.76 → 0.9.78

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.
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ var _chunkBG73ZJERjs = require('./chunk-BG73ZJER.js');
4
+
5
+ // generators.ts
6
+ _chunkBG73ZJERjs.init_cjs_shims.call(void 0, );
@@ -1,10 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
-
4
- var _chunkLTKRUM5Pjs = require('./chunk-LTKRUM5P.js');
3
+ var _chunkBG73ZJERjs = require('./chunk-BG73ZJER.js');
5
4
 
6
5
  // ../config-tools/src/utilities/correct-paths.ts
7
- _chunkLTKRUM5Pjs.init_cjs_shims.call(void 0, );
6
+ _chunkBG73ZJERjs.init_cjs_shims.call(void 0, );
8
7
  var _DRIVE_LETTER_START_RE = /^[A-Za-z]:\//;
9
8
  function normalizeWindowsPath(input = "") {
10
9
  if (!input) {
@@ -12,11 +11,10 @@ function normalizeWindowsPath(input = "") {
12
11
  }
13
12
  return input.replace(/\\/g, "/").replace(_DRIVE_LETTER_START_RE, (r) => r.toUpperCase());
14
13
  }
15
- _chunkLTKRUM5Pjs.__name.call(void 0, normalizeWindowsPath, "normalizeWindowsPath");
16
14
  var _UNC_REGEX = /^[/\\]{2}/;
17
15
  var _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
18
16
  var _DRIVE_LETTER_RE = /^[A-Za-z]:$/;
19
- var correctPaths = /* @__PURE__ */ _chunkLTKRUM5Pjs.__name.call(void 0, function(path) {
17
+ var correctPaths = function(path) {
20
18
  if (!path || path.length === 0) {
21
19
  return ".";
22
20
  }
@@ -44,8 +42,8 @@ var correctPaths = /* @__PURE__ */ _chunkLTKRUM5Pjs.__name.call(void 0, function
44
42
  return `//${path}`;
45
43
  }
46
44
  return isPathAbsolute && !isAbsolute(path) ? `/${path}` : path;
47
- }, "correctPaths");
48
- var joinPaths = /* @__PURE__ */ _chunkLTKRUM5Pjs.__name.call(void 0, function(...segments) {
45
+ };
46
+ var joinPaths = function(...segments) {
49
47
  let path = "";
50
48
  for (const seg of segments) {
51
49
  if (!seg) {
@@ -65,7 +63,7 @@ var joinPaths = /* @__PURE__ */ _chunkLTKRUM5Pjs.__name.call(void 0, function(..
65
63
  }
66
64
  }
67
65
  return correctPaths(path);
68
- }, "joinPaths");
66
+ };
69
67
  function normalizeString(path, allowAboveRoot) {
70
68
  let res = "";
71
69
  let lastSegmentLength = 0;
@@ -126,10 +124,9 @@ function normalizeString(path, allowAboveRoot) {
126
124
  }
127
125
  return res;
128
126
  }
129
- _chunkLTKRUM5Pjs.__name.call(void 0, normalizeString, "normalizeString");
130
- var isAbsolute = /* @__PURE__ */ _chunkLTKRUM5Pjs.__name.call(void 0, function(p) {
127
+ var isAbsolute = function(p) {
131
128
  return _IS_ABSOLUTE_RE.test(p);
132
- }, "isAbsolute");
129
+ };
133
130
 
134
131
 
135
132
 
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  __commonJS,
3
3
  init_esm_shims
4
- } from "./chunk-JSBLU2B7.mjs";
4
+ } from "./chunk-SHIGQSVE.mjs";
5
5
 
6
6
  // src/components/index.ts
7
7
  var require_components = __commonJS({
@@ -1,7 +1,6 @@
1
1
  import {
2
- __name,
3
2
  init_esm_shims
4
- } from "./chunk-JSBLU2B7.mjs";
3
+ } from "./chunk-SHIGQSVE.mjs";
5
4
 
6
5
  // ../config-tools/src/utilities/correct-paths.ts
7
6
  init_esm_shims();
@@ -12,11 +11,10 @@ function normalizeWindowsPath(input = "") {
12
11
  }
13
12
  return input.replace(/\\/g, "/").replace(_DRIVE_LETTER_START_RE, (r) => r.toUpperCase());
14
13
  }
15
- __name(normalizeWindowsPath, "normalizeWindowsPath");
16
14
  var _UNC_REGEX = /^[/\\]{2}/;
17
15
  var _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
18
16
  var _DRIVE_LETTER_RE = /^[A-Za-z]:$/;
19
- var correctPaths = /* @__PURE__ */ __name(function(path) {
17
+ var correctPaths = function(path) {
20
18
  if (!path || path.length === 0) {
21
19
  return ".";
22
20
  }
@@ -44,8 +42,8 @@ var correctPaths = /* @__PURE__ */ __name(function(path) {
44
42
  return `//${path}`;
45
43
  }
46
44
  return isPathAbsolute && !isAbsolute(path) ? `/${path}` : path;
47
- }, "correctPaths");
48
- var joinPaths = /* @__PURE__ */ __name(function(...segments) {
45
+ };
46
+ var joinPaths = function(...segments) {
49
47
  let path = "";
50
48
  for (const seg of segments) {
51
49
  if (!seg) {
@@ -65,7 +63,7 @@ var joinPaths = /* @__PURE__ */ __name(function(...segments) {
65
63
  }
66
64
  }
67
65
  return correctPaths(path);
68
- }, "joinPaths");
66
+ };
69
67
  function normalizeString(path, allowAboveRoot) {
70
68
  let res = "";
71
69
  let lastSegmentLength = 0;
@@ -126,10 +124,9 @@ function normalizeString(path, allowAboveRoot) {
126
124
  }
127
125
  return res;
128
126
  }
129
- __name(normalizeString, "normalizeString");
130
- var isAbsolute = /* @__PURE__ */ __name(function(p) {
127
+ var isAbsolute = function(p) {
131
128
  return _IS_ABSOLUTE_RE.test(p);
132
- }, "isAbsolute");
129
+ };
133
130
 
134
131
  export {
135
132
  correctPaths,
@@ -4,7 +4,6 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
5
  var __getProtoOf = Object.getPrototypeOf;
6
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
8
7
  var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
9
8
  get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
10
9
  }) : x)(function(x) {
@@ -39,20 +38,19 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
39
38
  mod
40
39
  ));
41
40
 
42
- // ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=03667209a675e5896d66bd6058c9830fe9adb022e07ce6b04adc2eb927ede5fd__f9deff99d28cedac02de9c72719d1b4e/node_modules/tsup/assets/esm_shims.js
41
+ // ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=616d4d8468728c5caa25e7b97fe871f667b5342103b43bda8e891020bc6b674a__e7bfd10e92d28211ce978b182e37e925/node_modules/tsup/assets/esm_shims.js
43
42
  import { fileURLToPath } from "url";
44
43
  import path from "path";
45
44
  var getFilename, getDirname, __dirname;
46
45
  var init_esm_shims = __esm({
47
- "../../node_modules/.pnpm/tsup@8.4.0_patch_hash=03667209a675e5896d66bd6058c9830fe9adb022e07ce6b04adc2eb927ede5fd__f9deff99d28cedac02de9c72719d1b4e/node_modules/tsup/assets/esm_shims.js"() {
48
- getFilename = /* @__PURE__ */ __name(() => fileURLToPath(import.meta.url), "getFilename");
49
- getDirname = /* @__PURE__ */ __name(() => path.dirname(getFilename()), "getDirname");
46
+ "../../node_modules/.pnpm/tsup@8.4.0_patch_hash=616d4d8468728c5caa25e7b97fe871f667b5342103b43bda8e891020bc6b674a__e7bfd10e92d28211ce978b182e37e925/node_modules/tsup/assets/esm_shims.js"() {
47
+ getFilename = () => fileURLToPath(import.meta.url);
48
+ getDirname = () => path.dirname(getFilename());
50
49
  __dirname = /* @__PURE__ */ getDirname();
51
50
  }
52
51
  });
53
52
 
54
53
  export {
55
- __name,
56
54
  __require,
57
55
  __commonJS,
58
56
  __export,
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_esm_shims
3
- } from "./chunk-JSBLU2B7.mjs";
3
+ } from "./chunk-SHIGQSVE.mjs";
4
4
 
5
5
  // generators.ts
6
6
  init_esm_shims();
@@ -1,9 +1,9 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-DQ67WT5G.js');
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-NG74QN4S.js');
2
2
 
3
3
 
4
- var _chunkVBI5UBLIjs = require('./chunk-VBI5UBLI.js');
5
- require('./chunk-PHMFOUDC.js');
6
- require('./chunk-LTKRUM5P.js');
4
+ var _chunkIRRBMF6Ojs = require('./chunk-IRRBMF6O.js');
5
+ require('./chunk-NNSWWAGP.js');
6
+ require('./chunk-BG73ZJER.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkVBI5UBLIjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkIRRBMF6Ojs.initGeneratorFn;
@@ -1,9 +1,9 @@
1
- import "./chunk-BSYROGZP.mjs";
1
+ import "./chunk-ZVRRJOP5.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-GM25EIP6.mjs";
5
- import "./chunk-EJSKIRCS.mjs";
6
- import "./chunk-JSBLU2B7.mjs";
4
+ } from "./chunk-IQHRF4IX.mjs";
5
+ import "./chunk-PEM26WKS.mjs";
6
+ import "./chunk-SHIGQSVE.mjs";
7
7
  export {
8
8
  initGeneratorFn
9
9
  };
package/dist/index.js CHANGED
@@ -1,25 +1,25 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-DQ67WT5G.js');
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-NG74QN4S.js');
2
2
 
3
3
 
4
- var _chunkRLLFZW5Zjs = require('./chunk-RLLFZW5Z.js');
4
+ var _chunkDUNMCAJEjs = require('./chunk-DUNMCAJE.js');
5
5
 
6
6
 
7
- var _chunkVBI5UBLIjs = require('./chunk-VBI5UBLI.js');
8
- require('./chunk-PHMFOUDC.js');
7
+ var _chunkIRRBMF6Ojs = require('./chunk-IRRBMF6O.js');
8
+ require('./chunk-NNSWWAGP.js');
9
9
 
10
10
 
11
11
 
12
12
 
13
13
 
14
- var _chunkLTKRUM5Pjs = require('./chunk-LTKRUM5P.js');
14
+ var _chunkBG73ZJERjs = require('./chunk-BG73ZJER.js');
15
15
 
16
16
  // index.ts
17
17
  var index_exports = {};
18
- _chunkLTKRUM5Pjs.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunkVBI5UBLIjs.initGeneratorFn
18
+ _chunkBG73ZJERjs.__export.call(void 0, index_exports, {
19
+ initGeneratorFn: () => _chunkIRRBMF6Ojs.initGeneratorFn
20
20
  });
21
- _chunkLTKRUM5Pjs.init_cjs_shims.call(void 0, );
22
- _chunkLTKRUM5Pjs.__reExport.call(void 0, index_exports, _chunkLTKRUM5Pjs.__toESM.call(void 0, _chunkRLLFZW5Zjs.require_components.call(void 0, )));
21
+ _chunkBG73ZJERjs.init_cjs_shims.call(void 0, );
22
+ _chunkBG73ZJERjs.__reExport.call(void 0, index_exports, _chunkBG73ZJERjs.__toESM.call(void 0, _chunkDUNMCAJEjs.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunkVBI5UBLIjs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkIRRBMF6Ojs.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -1,17 +1,17 @@
1
- import "./chunk-BSYROGZP.mjs";
1
+ import "./chunk-ZVRRJOP5.mjs";
2
2
  import {
3
3
  require_components
4
- } from "./chunk-IAJM6J3Z.mjs";
4
+ } from "./chunk-NVTKHBEW.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-GM25EIP6.mjs";
8
- import "./chunk-EJSKIRCS.mjs";
7
+ } from "./chunk-IQHRF4IX.mjs";
8
+ import "./chunk-PEM26WKS.mjs";
9
9
  import {
10
10
  __export,
11
11
  __reExport,
12
12
  __toESM,
13
13
  init_esm_shims
14
- } from "./chunk-JSBLU2B7.mjs";
14
+ } from "./chunk-SHIGQSVE.mjs";
15
15
 
16
16
  // index.ts
17
17
  var index_exports = {};
@@ -1,5 +1,5 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkRLLFZW5Zjs = require('../../chunk-RLLFZW5Z.js');
4
- require('../../chunk-LTKRUM5P.js');
5
- exports. default = _chunkRLLFZW5Zjs.require_components.call(void 0, );
3
+ var _chunkDUNMCAJEjs = require('../../chunk-DUNMCAJE.js');
4
+ require('../../chunk-BG73ZJER.js');
5
+ exports. default = _chunkDUNMCAJEjs.require_components.call(void 0, );
@@ -1,5 +1,5 @@
1
1
  import {
2
2
  require_components
3
- } from "../../chunk-IAJM6J3Z.mjs";
4
- import "../../chunk-JSBLU2B7.mjs";
3
+ } from "../../chunk-NVTKHBEW.mjs";
4
+ import "../../chunk-SHIGQSVE.mjs";
5
5
  export default require_components();