chore: update deps

This commit is contained in:
Anthony Fu 2023-05-23 12:46:42 +02:00
parent d3b2bc1883
commit 33ed44af78
6 changed files with 1942 additions and 1292 deletions

View File

@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [14, 16, 18]
node: [16, 18]
fail-fast: false
steps:
@ -52,8 +52,6 @@ jobs:
- name: Test
run: pnpm run test
env:
SKIP_RSPACK: ${{ matrix.node == 14 && 'true' || 'false' }}
- name: Install Webpack 4
run: pnpm i webpack@4

View File

@ -1,7 +1,7 @@
{
"name": "unplugin",
"version": "1.3.1",
"packageManager": "pnpm@7.30.0",
"packageManager": "pnpm@8.5.1",
"description": "Unified plugin system for build tools",
"license": "MIT",
"repository": "unjs/unplugin",
@ -38,32 +38,33 @@
"webpack-virtual-modules": "^0.5.0"
},
"devDependencies": {
"@ampproject/remapping": "^2.2.0",
"@antfu/eslint-config": "^0.37.0",
"@antfu/ni": "^0.20.0",
"@rspack/core": "^0.1.1",
"@ampproject/remapping": "^2.2.1",
"@antfu/eslint-config": "^0.39.1",
"@antfu/ni": "^0.21.3",
"@rspack/cli": "^0.1.12",
"@rspack/core": "^0.1.12",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.15.5",
"@types/node": "^20.2.3",
"@types/webpack-sources": "^3.2.0",
"bumpp": "^9.0.0",
"bumpp": "^9.1.0",
"conventional-changelog-cli": "^2.2.2",
"enhanced-resolve": "^5.12.0",
"esbuild": "^0.17.12",
"eslint": "^8.36.0",
"enhanced-resolve": "^5.14.0",
"esbuild": "^0.17.19",
"eslint": "^8.41.0",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.1",
"jiti": "^1.18.2",
"lint-staged": "^13.2.0",
"lint-staged": "^13.2.2",
"magic-string": "^0.30.0",
"picocolors": "^1.0.0",
"rollup": "^3.20.0",
"rollup": "^3.23.0",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vitest": "^0.29.7",
"webpack": "^5.76.2",
"vite": "^4.3.8",
"vitest": "^0.31.1",
"webpack": "^5.83.1",
"webpack-cli": "4.10.0"
},
"simple-git-hooks": {

3196
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,6 @@
import fs from 'fs'
import path from 'path'
import { Buffer } from 'buffer'
import remapping from '@ampproject/remapping'
import { Parser } from 'acorn'
import type { DecodedSourceMap, EncodedSourceMap } from '@ampproject/remapping'

View File

@ -1,3 +1,4 @@
import { Buffer } from 'buffer'
import sources from 'webpack-sources'
import type { Compilation } from '@rspack/core'
import { Parser } from 'acorn'

View File

@ -1,4 +1,5 @@
import { resolve } from 'path'
import { Buffer } from 'buffer'
import sources from 'webpack-sources'
import type { Compilation } from 'webpack'
import { Parser } from 'acorn'