-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into optimize-reactive-judgment
- Loading branch information
Showing
85 changed files
with
1,693 additions
and
781 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 |
---|---|---|
|
@@ -7,6 +7,7 @@ on: | |
pull_request: | ||
branches: | ||
- main | ||
- minor | ||
|
||
permissions: | ||
contents: read | ||
|
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ TODOs.md | |
.eslintcache | ||
dts-build/packages | ||
*.tsbuildinfo | ||
*.tgz |
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,7 @@ | ||
{ | ||
"drips": { | ||
"ethereum": { | ||
"ownedBy": "0x5393BdeA2a020769256d9f337B0fc81a2F64850A" | ||
} | ||
} | ||
} |
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,12 +1,12 @@ | ||
{ | ||
"private": true, | ||
"version": "3.4.21", | ||
"packageManager": "[email protected].4", | ||
"packageManager": "[email protected].6", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "node scripts/dev.js", | ||
"build": "node scripts/build.js", | ||
"build-dts": "tsc -p tsconfig.build.json && rollup -c rollup.dts.config.js", | ||
"build-dts": "tsc -p tsconfig.build-browser.json && tsc -p tsconfig.build-node.json && rollup -c rollup.dts.config.js", | ||
"clean": "rimraf packages/*/dist temp .eslintcache", | ||
"size": "run-s \"size-*\" && tsx scripts/usage-size.ts", | ||
"size-global": "node scripts/build.js vue runtime-dom -f global -p --size", | ||
|
@@ -20,7 +20,7 @@ | |
"test-unit": "vitest -c vitest.unit.config.ts", | ||
"test-e2e": "node scripts/build.js vue -f global -d && vitest -c vitest.e2e.config.ts", | ||
"test-dts": "run-s build-dts test-dts-only", | ||
"test-dts-only": "tsc -p ./packages/dts-test/tsconfig.test.json", | ||
"test-dts-only": "tsc -p packages/dts-built-test/tsconfig.json && tsc -p ./packages/dts-test/tsconfig.test.json", | ||
"test-coverage": "vitest -c vitest.unit.config.ts --coverage", | ||
"test-bench": "vitest bench", | ||
"release": "node scripts/release.js", | ||
|
@@ -59,9 +59,9 @@ | |
"node": ">=18.12.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/parser": "^7.24.0", | ||
"@babel/parser": "^7.24.1", | ||
"@babel/types": "^7.24.0", | ||
"@codspeed/vitest-plugin": "^2.3.1", | ||
"@codspeed/vitest-plugin": "^3.1.0", | ||
"@rollup/plugin-alias": "^5.1.0", | ||
"@rollup/plugin-commonjs": "^25.0.7", | ||
"@rollup/plugin-json": "^6.1.0", | ||
|
@@ -70,15 +70,15 @@ | |
"@rollup/plugin-terser": "^0.4.4", | ||
"@types/hash-sum": "^1.0.2", | ||
"@types/minimist": "^1.2.5", | ||
"@types/node": "^20.11.25", | ||
"@types/node": "^20.12.5", | ||
"@types/semver": "^7.5.8", | ||
"@typescript-eslint/eslint-plugin": "^7.1.1", | ||
"@typescript-eslint/parser": "^7.1.1", | ||
"@vitest/coverage-istanbul": "^1.3.1", | ||
"@typescript-eslint/eslint-plugin": "^7.4.0", | ||
"@typescript-eslint/parser": "^7.4.0", | ||
"@vitest/coverage-istanbul": "^1.4.0", | ||
"@vue/consolidate": "1.0.0", | ||
"conventional-changelog-cli": "^4.1.0", | ||
"enquirer": "^2.4.1", | ||
"esbuild": "^0.20.1", | ||
"esbuild": "^0.20.2", | ||
"esbuild-plugin-polyfill-node": "^0.3.0", | ||
"eslint": "^8.57.0", | ||
"eslint-define-config": "^2.1.0", | ||
|
@@ -98,21 +98,21 @@ | |
"prettier": "^3.2.5", | ||
"pretty-bytes": "^6.1.1", | ||
"pug": "^3.0.2", | ||
"puppeteer": "~22.4.1", | ||
"puppeteer": "~22.6.3", | ||
"rimraf": "^5.0.5", | ||
"rollup": "^4.12.1", | ||
"rollup": "^4.13.2", | ||
"rollup-plugin-dts": "^6.1.0", | ||
"rollup-plugin-esbuild": "^6.1.1", | ||
"rollup-plugin-polyfill-node": "^0.13.0", | ||
"semver": "^7.6.0", | ||
"serve": "^14.2.1", | ||
"simple-git-hooks": "^2.10.0", | ||
"terser": "^5.29.1", | ||
"simple-git-hooks": "^2.11.1", | ||
"terser": "^5.30.1", | ||
"todomvc-app-css": "^2.4.3", | ||
"tslib": "^2.6.2", | ||
"tsx": "^4.7.1", | ||
"typescript": "^5.2.2", | ||
"vite": "^5.1.5", | ||
"vitest": "^1.3.1" | ||
"tsx": "^4.7.2", | ||
"typescript": "~5.4.5", | ||
"vite": "^5.2.7", | ||
"vitest": "^1.4.0" | ||
} | ||
} |
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
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
Oops, something went wrong.