File tree Expand file tree Collapse file tree
examples/nx-workspace-old/apps/ng-app-cli
esbuild/test/__snapshots__ Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 11// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
22
33exports [` 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
1717exports [` 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
3232exports [` 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"
You can’t perform that action at this time.
0 commit comments