Skip to content

Commit

Permalink
feat: 添加engines
Browse files Browse the repository at this point in the history
  • Loading branch information
fengxinming authored Dec 26, 2023
1 parent c766244 commit 8910ea2
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 6 deletions.
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

0 comments on commit 8910ea2

Please sign in to comment.