Update dependencies and clean up project structure. Add cloud.google.com/go/compute/metadata as an indirect requirement in go.mod. Remove unused files and update package.json for Vite and React plugins. Refactor Makefile for improved build process.

This commit is contained in:
2025-11-22 06:53:24 -06:00
parent c9ade39ad9
commit 30aa969433
1295 changed files with 343445 additions and 210041 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@rolldown/pluginutils",
"version": "1.0.0-beta.47",
"version": "1.0.0-beta.27",
"license": "MIT",
"type": "module",
"repository": {
@@ -11,12 +11,14 @@
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
@@ -24,11 +26,11 @@
"devDependencies": {
"@types/picomatch": "^4.0.0",
"picomatch": "^4.0.2",
"typescript": "^5.8.3",
"vitest": "^4.0.1"
"tsdown": "0.12.9",
"vitest": "^3.0.1"
},
"scripts": {
"build": "tsc",
"build": "tsdown",
"test": "vitest --typecheck"
}
}