Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions bun.lock
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@rollup/plugin-replace": "^5.0.5",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"dotenv-safe": "^9.1.0",
"esbuild": "^0.19.5",
"postcss": "^8.4.47",
"rollup": "^2.79.1",
Expand All @@ -45,7 +45,7 @@
},
"src/ts": {
"name": "@navigraph/msfs-navigation-data-interface",
"version": "1.1.2",
"version": "1.2.0",
"devDependencies": {
"@microsoft/msfs-types": "^1.14.6",
"tsup": "^8.4.0",
Expand Down Expand Up @@ -387,6 +387,8 @@

"dotenv": ["[email protected]", "", {}, "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ=="],

"dotenv-safe": ["[email protected]", "", { "peerDependencies": { "dotenv": ">= 8.2.0" } }, "sha512-2qwVAnUN+EDpu41pIK1XiJpHXKHV9Dnti3cE1EnUXT1/BV5+B7xuSZtgZ/4LExkCpp5F6BGikraezQL+8hKCOA=="],

"eastasianwidth": ["[email protected]", "", {}, "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="],

"electron-to-chromium": ["[email protected]", "", {}, "sha512-QgX9EBvWGmvSRa74zqfnG7+Eno0Ak0vftBll0Pt2/z5b3bEGYL6OUXLgKPtvx73dn3dvwrlyVkjPKRRlhLYTEg=="],
Expand Down
2 changes: 1 addition & 1 deletion example/gauge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@rollup/plugin-replace": "^5.0.5",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"dotenv-safe": "^9.1.0",
"esbuild": "^0.19.5",
"postcss": "^8.4.47",
"rollup": "^2.79.1",
Expand Down
8 changes: 4 additions & 4 deletions example/gauge/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import resolve from "@rollup/plugin-node-resolve";
import replace from "@rollup/plugin-replace";
import dotenv from "dotenv";
import autoprefixer from "autoprefixer";
import dotenvSafe from "dotenv-safe";
import copy from "rollup-plugin-copy";
import esbuild from "rollup-plugin-esbuild";
import autoprefixer from "autoprefixer";
import tailwind from "tailwindcss";
import postcss from "rollup-plugin-postcss";
import tailwind from "tailwindcss";

dotenv.config();
dotenvSafe.config();

// eslint-disable-next-line no-undef
const DEBUG = process.env.DEBUG === "true";
Expand Down