@codedrifters/configulator 0.0.320 → 0.0.321
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/index.js +12 -12
- package/lib/index.js.map +1 -1
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -16936,7 +16936,7 @@ function buildPeopleProfileBundle(paths = DEFAULT_AGENT_PATHS, issueDefaults = D
|
|
|
16936
16936
|
var peopleProfileBundle = buildPeopleProfileBundle();
|
|
16937
16937
|
|
|
16938
16938
|
// src/pnpm/pnpm-workspace.ts
|
|
16939
|
-
var
|
|
16939
|
+
var import_node_path = require("path");
|
|
16940
16940
|
var import_projen = require("projen");
|
|
16941
16941
|
var MINIMUM_RELEASE_AGE = {
|
|
16942
16942
|
ZERO_DAYS: 0,
|
|
@@ -16988,7 +16988,7 @@ var PnpmWorkspace = class _PnpmWorkspace extends import_projen.Component {
|
|
|
16988
16988
|
const pnpmConfig = {};
|
|
16989
16989
|
const packages = new Array();
|
|
16990
16990
|
for (const subproject of project.subprojects) {
|
|
16991
|
-
packages.push((0,
|
|
16991
|
+
packages.push((0, import_node_path.relative)(this.project.outdir, subproject.outdir));
|
|
16992
16992
|
}
|
|
16993
16993
|
const packageSet = new Set(packages);
|
|
16994
16994
|
for (const subprojectPath of this.subprojects) {
|
|
@@ -31276,7 +31276,7 @@ var AstroOutput = {
|
|
|
31276
31276
|
};
|
|
31277
31277
|
|
|
31278
31278
|
// src/aws/aws-deployment-config.ts
|
|
31279
|
-
var
|
|
31279
|
+
var import_node_path2 = require("path");
|
|
31280
31280
|
var import_utils9 = __toESM(require_lib());
|
|
31281
31281
|
var import_projen12 = require("projen");
|
|
31282
31282
|
|
|
@@ -31940,10 +31940,10 @@ var AwsDeploymentConfig = class _AwsDeploymentConfig extends import_projen12.Com
|
|
|
31940
31940
|
this.env = {
|
|
31941
31941
|
GIT_BRANCH_NAME: '$(echo "${GIT_BRANCH_NAME:-$(git branch --show-current)}")'
|
|
31942
31942
|
};
|
|
31943
|
-
this.projectPath = (0,
|
|
31944
|
-
this.rootPath = (0,
|
|
31945
|
-
this.rootCdkOut = (0,
|
|
31946
|
-
this.cdkOut = (0,
|
|
31943
|
+
this.projectPath = (0, import_node_path2.relative)(project.root.outdir, project.outdir);
|
|
31944
|
+
this.rootPath = (0, import_node_path2.relative)(project.outdir, project.root.outdir);
|
|
31945
|
+
this.rootCdkOut = (0, import_node_path2.join)("dist", this.projectPath, "cdk.out");
|
|
31946
|
+
this.cdkOut = (0, import_node_path2.join)(this.rootPath, "dist", this.projectPath, "cdk.out");
|
|
31947
31947
|
["deploy", "watch"].forEach((taskName) => {
|
|
31948
31948
|
const task = project.tasks.tryFind(taskName);
|
|
31949
31949
|
if (task) {
|
|
@@ -32026,7 +32026,7 @@ var AwsDeploymentConfig = class _AwsDeploymentConfig extends import_projen12.Com
|
|
|
32026
32026
|
super.preSynthesize();
|
|
32027
32027
|
if (TurboRepo.of(this.project)) {
|
|
32028
32028
|
const turbo = TurboRepo.of(this.project);
|
|
32029
|
-
turbo.postCompileTask?.outputs.push((0,
|
|
32029
|
+
turbo.postCompileTask?.outputs.push((0, import_node_path2.join)(this.cdkOut, "**"));
|
|
32030
32030
|
}
|
|
32031
32031
|
}
|
|
32032
32032
|
};
|
|
@@ -35175,9 +35175,9 @@ var TsdocConfig = class _TsdocConfig extends import_projen21.Component {
|
|
|
35175
35175
|
};
|
|
35176
35176
|
|
|
35177
35177
|
// src/typescript/typescript-config.ts
|
|
35178
|
-
var
|
|
35178
|
+
var import_node_path3 = require("path");
|
|
35179
35179
|
var import_projen22 = require("projen");
|
|
35180
|
-
var
|
|
35180
|
+
var import_path = require("projen/lib/util/path");
|
|
35181
35181
|
var TypeScriptConfig = class extends import_projen22.Component {
|
|
35182
35182
|
constructor(project) {
|
|
35183
35183
|
super(project);
|
|
@@ -35193,8 +35193,8 @@ var TypeScriptConfig = class extends import_projen22.Component {
|
|
|
35193
35193
|
tsPaths = {
|
|
35194
35194
|
...tsPaths,
|
|
35195
35195
|
[dep.name]: [
|
|
35196
|
-
(0,
|
|
35197
|
-
(0,
|
|
35196
|
+
(0, import_path.ensureRelativePathStartsWithDot)(
|
|
35197
|
+
(0, import_node_path3.relative)(project.outdir, subproject.outdir)
|
|
35198
35198
|
)
|
|
35199
35199
|
]
|
|
35200
35200
|
};
|