-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Upgrade node to 22 - Remove sass @import usage
- Loading branch information
1 parent
64be7c1
commit f511e35
Showing
10 changed files
with
1,061 additions
and
878 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
@import './reset.scss'; | ||
@import './quasar.scss'; | ||
@use './reset.scss'; | ||
@use './quasar.scss'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
patches/@vitejs+plugin-vue+5.1.4.patch → patches/@vitejs+plugin-vue+5.2.1.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
diff --git a/node_modules/vue-tsc/index.js b/node_modules/vue-tsc/index.js | ||
index a680d25..eb49461 100644 | ||
--- a/node_modules/vue-tsc/index.js | ||
+++ b/node_modules/vue-tsc/index.js | ||
@@ -4,7 +4,8 @@ exports.run = run; | ||
const runTsc_1 = require("@volar/typescript/lib/quickstart/runTsc"); | ||
const vue = require("@vue/language-core"); | ||
const windowsPathReg = /\\/g; | ||
-function run(tscPath = require.resolve('typescript/lib/tsc')) { | ||
+const semver = require('semver'); | ||
+function run(tscPath = getTscPath()) { | ||
let runExtensions = ['.vue']; | ||
const extensionsChangedException = new Error('extensions changed'); | ||
const main = () => (0, runTsc_1.runTsc)(tscPath, runExtensions, (ts, options) => { | ||
@@ -35,4 +36,16 @@ function run(tscPath = require.resolve('typescript/lib/tsc')) { | ||
} | ||
} | ||
} | ||
+ | ||
+function getTscPath() { | ||
+ const version = require('typescript/package.json').version; | ||
+ | ||
+ if (semver.gte(version, '5.7.0')) { | ||
+ return require.resolve('typescript/lib/_tsc'); | ||
+ } | ||
+ else { | ||
+ return require.resolve('typescript/lib/tsc'); | ||
+ } | ||
+} | ||
+ | ||
//# sourceMappingURL=index.js.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.