File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 32
32
"@rollup/plugin-replace" : " ^5.0.5" ,
33
33
"autoprefixer" : " ^10.4.20" ,
34
34
"cross-env" : " ^7.0.3" ,
35
- "dotenv" : " ^16.3.1 " ,
35
+ "dotenv-safe " : " ^9.1.0 " ,
36
36
"esbuild" : " ^0.19.5" ,
37
37
"postcss" : " ^8.4.47" ,
38
38
"rollup" : " ^2.79.1" ,
45
45
},
46
46
"src/ts" : {
47
47
"name" : " @navigraph/msfs-navigation-data-interface" ,
48
- "version" : " 1.1.2 " ,
48
+ "version" : " 1.2.0 " ,
49
49
"devDependencies" : {
50
50
"@microsoft/msfs-types" : " ^1.14.6" ,
51
51
"tsup" : " ^8.4.0" ,
387
387
388
388
"dotenv" : [
" [email protected] " ,
" " , {},
" sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==" ],
389
389
390
+ "dotenv-safe" : [
" [email protected] " ,
" " , {
"peerDependencies" : {
"dotenv" :
" >= 8.2.0" } },
" sha512-2qwVAnUN+EDpu41pIK1XiJpHXKHV9Dnti3cE1EnUXT1/BV5+B7xuSZtgZ/4LExkCpp5F6BGikraezQL+8hKCOA==" ],
391
+
390
392
"eastasianwidth" : [
" [email protected] " ,
" " , {},
" sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" ],
391
393
392
394
"electron-to-chromium" : [
" [email protected] " ,
" " , {},
" sha512-QgX9EBvWGmvSRa74zqfnG7+Eno0Ak0vftBll0Pt2/z5b3bEGYL6OUXLgKPtvx73dn3dvwrlyVkjPKRRlhLYTEg==" ],
Original file line number Diff line number Diff line change 19
19
"@rollup/plugin-replace" : " ^5.0.5" ,
20
20
"autoprefixer" : " ^10.4.20" ,
21
21
"cross-env" : " ^7.0.3" ,
22
- "dotenv" : " ^16.3.1 " ,
22
+ "dotenv-safe " : " ^9.1.0 " ,
23
23
"esbuild" : " ^0.19.5" ,
24
24
"postcss" : " ^8.4.47" ,
25
25
"rollup" : " ^2.79.1" ,
Original file line number Diff line number Diff line change 1
1
import resolve from "@rollup/plugin-node-resolve" ;
2
2
import replace from "@rollup/plugin-replace" ;
3
- import dotenv from "dotenv" ;
3
+ import autoprefixer from "autoprefixer" ;
4
+ import dotenvSafe from "dotenv-safe" ;
4
5
import copy from "rollup-plugin-copy" ;
5
6
import esbuild from "rollup-plugin-esbuild" ;
6
- import autoprefixer from "autoprefixer" ;
7
- import tailwind from "tailwindcss" ;
8
7
import postcss from "rollup-plugin-postcss" ;
8
+ import tailwind from "tailwindcss" ;
9
9
10
- dotenv . config ( ) ;
10
+ dotenvSafe . config ( ) ;
11
11
12
12
// eslint-disable-next-line no-undef
13
13
const DEBUG = process . env . DEBUG === "true" ;
You can’t perform that action at this time.
0 commit comments