Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinovantes committed Aug 13, 2024
1 parent 2bdc32b commit 2c09ab0
Show file tree
Hide file tree
Showing 6 changed files with 874 additions and 861 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,10 @@
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.24",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-dts": "^4.0.2",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^1.0.4",
"vue": "^3.4.30"
"vitest": "^2.0.5",
"vue": "^3.4.30",
"vue-tsc": "^2.0.29"
}
}
21 changes: 21 additions & 0 deletions patches/@vitejs+plugin-vue+5.1.2.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
diff --git a/node_modules/@vitejs/plugin-vue/package.json b/node_modules/@vitejs/plugin-vue/package.json
index 9b4c38d..5352c61 100644
--- a/node_modules/@vitejs/plugin-vue/package.json
+++ b/node_modules/@vitejs/plugin-vue/package.json
@@ -1,7 +1,7 @@
{
"name": "@vitejs/plugin-vue",
"version": "5.1.2",
- "type": "commonjs",
+ "type": "module",
"license": "MIT",
"author": "Evan You",
"files": [
@@ -12,6 +12,7 @@
"types": "./dist/index.d.ts",
"exports": {
".": {
+ "types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
16 changes: 2 additions & 14 deletions patches/quasar+2.16.4.patch → patches/quasar+2.16.8.patch
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
diff --git a/node_modules/quasar/.package.json.swp b/node_modules/quasar/.package.json.swp
new file mode 100644
index 0000000..6ad7cb2
Binary files /dev/null and b/node_modules/quasar/.package.json.swp differ
diff --git a/node_modules/quasar/package.json b/node_modules/quasar/package.json
index 72815fa..131bc67 100644
index 2293df1..a2dfec0 100644
--- a/node_modules/quasar/package.json
+++ b/node_modules/quasar/package.json
@@ -2,11 +2,6 @@
"name": "quasar",
"version": "2.16.4",
"version": "2.16.8",
"description": "Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time",
- "type": "module",
- "module": "dist/quasar.client.js",
Expand All @@ -18,11 +14,3 @@ index 72815fa..131bc67 100644
"files": [
"dist",
"lang",
@@ -14,6 +9,7 @@
"src",
"wrappers"
],
+ "type": "commonjs",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
1 change: 1 addition & 0 deletions tests/playground/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

writer = Writer()
writer.translater_class = HTMLTranslator

html_str = publish_string(rst, writer = writer).decode('utf-8')
print(html_str)

Expand Down
4 changes: 1 addition & 3 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ export const commonConfig = defineConfig({
},

plugins: [
nodePolyfills({
include: ['path'],
}),
nodePolyfills(),
],
})

Expand Down
Loading

0 comments on commit 2c09ab0

Please sign in to comment.