Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 添加engines #35

Closed
wants to merge 1 commit into from
Closed
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
3 changes: 2 additions & 1 deletion packages/vite-plugin-cp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-cp",
"version": "4.0.5",
"version": "4.0.6",
"description": "Copy files after building bundles.",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
Expand Down Expand Up @@ -31,6 +31,7 @@
"vite-plugin-cp"
],
"author": "Jesse Feng <fxm0016@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengxinming/vite-plugins/issues"
},
Expand Down
7 changes: 6 additions & 1 deletion packages/vite-plugin-external/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-external",
"version": "4.1.2",
"version": "4.1.3",
"description": "Provides a way of excluding dependencies from the runtime code and output bundles.",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
Expand All @@ -17,6 +17,10 @@
"watch": "vite build --watch",
"release": "npm publish"
},
"engines": {
"node": ">=14.18.0",
"vite": ">=3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fengxinming/vite-plugins.git",
Expand All @@ -27,6 +31,7 @@
"vite-plugin-external"
],
"author": "Jesse Feng <fxm0016@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengxinming/vite-plugins/issues"
},
Expand Down
7 changes: 6 additions & 1 deletion packages/vite-plugin-hook-use/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-hook-use",
"version": "4.0.3",
"version": "4.0.4",
"description": "Display which hooks are used in your project.",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
Expand All @@ -12,6 +12,10 @@
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=14.18.0",
"vite": ">=3.1.0"
},
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
Expand All @@ -27,6 +31,7 @@
"vite-plugin-external"
],
"author": "Jesse Feng <fxm0016@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengxinming/vite-plugins/issues"
},
Expand Down
7 changes: 6 additions & 1 deletion packages/vite-plugin-include-css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-include-css",
"version": "4.0.2",
"version": "4.0.3",
"description": "build css into individual js files instead of using css links.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand All @@ -17,6 +17,10 @@
"build": "vite build",
"watch": "vite build --watch"
},
"engines": {
"node": ">=14.18.0",
"vite": ">=3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fengxinming/vite-plugins.git",
Expand All @@ -27,6 +31,7 @@
"vite-plugin-include-css"
],
"author": "Jesse Feng <fxm0016@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengxinming/vite-plugins/issues"
},
Expand Down
7 changes: 6 additions & 1 deletion packages/vite-plugin-mock-data/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-mock-data",
"version": "4.0.3",
"version": "4.0.4",
"description": "Provides a simple way to mock data.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand All @@ -12,6 +12,10 @@
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=14.18.0",
"vite": ">=3.1.0"
},
"scripts": {
"release": "npm publish",
"build": "vite build",
Expand All @@ -27,6 +31,7 @@
"vite-plugin-mock-data"
],
"author": "Jesse Feng <fxm0016@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengxinming/vite-plugins/issues"
},
Expand Down
6 changes: 5 additions & 1 deletion packages/vite-plugin-reverse-proxy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-reverse-proxy",
"version": "4.0.2",
"version": "4.0.3",
"description": "Makes the script to be served with the text/javascript MIME type instead of module MIME type.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand All @@ -12,6 +12,10 @@
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=14.18.0",
"vite": ">=3.1.0"
},
"scripts": {
"release": "npm publish",
"build": "vite build",
Expand Down