File tree Expand file tree Collapse file tree 5 files changed +18
-12
lines changed
examples/nx-workspace-old/apps/ng-app-cli
esbuild/test/__snapshots__ Expand file tree Collapse file tree 5 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 40
40
"@angular/build" : " ^20.0.4" ,
41
41
"@angular/cli" : " ^20.0.4" ,
42
42
"@angular/compiler-cli" : " ^20.0.5" ,
43
- "@dotenv-run/core" : " workspace:^1.3.7 " ,
43
+ "@dotenv-run/core" : " workspace:^1.3.8 " ,
44
44
"@dotenv-run/jest-angular" : " workspace:^0.2.1" ,
45
45
"jest-preset-angular" : " ^14.6.0" ,
46
46
"@jest/transform" : " ^29.7.0" ,
Original file line number Diff line number Diff line change 1
1
# @dotenv-run/core
2
2
3
+ ## 1.3.8
4
+
5
+ ### Patch Changes
6
+
7
+ - feat(core): add turbo.jsonc to the root files
8
+
3
9
## 1.3.7
4
10
5
11
### Patch Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @dotenv-run/core" ,
3
- "version" : " 1.3.7 " ,
3
+ "version" : " 1.3.8 " ,
4
4
"description" : " core library to load environment variables with monorepo support" ,
5
5
"homepage" : " https://github.com/chihab/dotenv-run" ,
6
6
"main" : " dist/cjs/index.js" ,
Original file line number Diff line number Diff line change 1
1
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
2
3
3
exports [` Usage with esbuild > should replace environment variables using define option 1` ] = `
4
- "\\ "use strict\\ ";
4
+ ""use strict";
5
5
(() => {
6
6
// test/util.js
7
7
function meta() {
8
- return \\ " https://dotenv-run.app\\ " ;
8
+ return " https://dotenv-run.app" ;
9
9
}
10
10
11
11
// test/app.js
12
- console .log (\\ " https://dotenv-run.app\\ " );
12
+ console .log (" https://dotenv-run.app" );
13
13
console .log (meta ());
14
14
} )();"
15
15
` ;
16
16
17
17
exports [` Usage with esbuild > should replace environment variables using esbuild plugin 1` ] = `
18
- "\\ "use strict\\ ";
18
+ ""use strict";
19
19
(() => {
20
20
// test/util.js
21
21
function meta() {
22
- return \\ " https://dotenv-run.app\\ " ;
22
+ return " https://dotenv-run.app" ;
23
23
}
24
24
25
25
// test/app.js
26
- console .log (\\ " https://dotenv-run.app\\ " );
26
+ console .log (" https://dotenv-run.app" );
27
27
console .log (meta ());
28
28
} )();
29
29
"
30
30
` ;
31
31
32
32
exports [` Usage with esbuild > should replace environment variables using esbuild plugin and a custom define 1` ] = `
33
- "\\ "use strict\\ ";
33
+ ""use strict";
34
34
(() => {
35
35
// test/util.js
36
36
function meta() {
37
- return \\ " https://dotenv-run.define\\ " ;
37
+ return " https://dotenv-run.define" ;
38
38
}
39
39
40
40
// test/app.js
41
- console .log (\\ " https://dotenv-run.define\\ " );
41
+ console .log (" https://dotenv-run.define" );
42
42
console .log (meta ());
43
43
} )();
44
44
"
You can’t perform that action at this time.
0 commit comments