Skip to content

Commit 5b1bb77

Browse files
committed
feat(core): add turbo.jsonc to the root files
1 parent f7121a5 commit 5b1bb77

File tree

5 files changed

+18
-12
lines changed

5 files changed

+18
-12
lines changed

examples/nx-workspace-old/apps/ng-app-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"@angular/build": "^20.0.4",
4141
"@angular/cli": "^20.0.4",
4242
"@angular/compiler-cli": "^20.0.5",
43-
"@dotenv-run/core": "workspace:^1.3.7",
43+
"@dotenv-run/core": "workspace:^1.3.8",
4444
"@dotenv-run/jest-angular": "workspace:^0.2.1",
4545
"jest-preset-angular": "^14.6.0",
4646
"@jest/transform": "^29.7.0",

packages/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @dotenv-run/core
22

3+
## 1.3.8
4+
5+
### Patch Changes
6+
7+
- feat(core): add turbo.jsonc to the root files
8+
39
## 1.3.7
410

511
### Patch Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dotenv-run/core",
3-
"version": "1.3.7",
3+
"version": "1.3.8",
44
"description": "core library to load environment variables with monorepo support",
55
"homepage": "https://github.com/chihab/dotenv-run",
66
"main": "dist/cjs/index.js",

packages/esbuild/test/__snapshots__/index.test.ts.snap

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
22

33
exports[`Usage with esbuild > should replace environment variables using define option 1`] = `
4-
"\\"use strict\\";
4+
""use strict";
55
(() => {
66
// test/util.js
77
function meta() {
8-
return \\"https://dotenv-run.app\\";
8+
return "https://dotenv-run.app";
99
}
1010
1111
// test/app.js
12-
console.log(\\"https://dotenv-run.app\\");
12+
console.log("https://dotenv-run.app");
1313
console.log(meta());
1414
})();"
1515
`;
1616

1717
exports[`Usage with esbuild > should replace environment variables using esbuild plugin 1`] = `
18-
"\\"use strict\\";
18+
""use strict";
1919
(() => {
2020
// test/util.js
2121
function meta() {
22-
return \\"https://dotenv-run.app\\";
22+
return "https://dotenv-run.app";
2323
}
2424
2525
// test/app.js
26-
console.log(\\"https://dotenv-run.app\\");
26+
console.log("https://dotenv-run.app");
2727
console.log(meta());
2828
})();
2929
"
3030
`;
3131

3232
exports[`Usage with esbuild > should replace environment variables using esbuild plugin and a custom define 1`] = `
33-
"\\"use strict\\";
33+
""use strict";
3434
(() => {
3535
// test/util.js
3636
function meta() {
37-
return \\"https://dotenv-run.define\\";
37+
return "https://dotenv-run.define";
3838
}
3939
4040
// test/app.js
41-
console.log(\\"https://dotenv-run.define\\");
41+
console.log("https://dotenv-run.define");
4242
console.log(meta());
4343
})();
4444
"

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)