Skip to content

Commit

Permalink
chore: bump deps and update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Nov 30, 2022
1 parent 6ec5489 commit 4df9288
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 44 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -85,7 +85,7 @@
"@vueuse/core": "^9.4.0",
"body-scroll-lock": "4.0.0-beta.0",
"shiki": "^0.11.1",
"vite": "^3.2.3",
"vite": "^4.0.0-alpha.0",
"vue": "^3.2.41"
},
"devDependencies": {
Expand Down Expand Up @@ -148,8 +148,8 @@
"prompts": "^2.4.2",
"punycode": "^2.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.3",
"rollup": "^3.3.0-0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^4.10.2",
"semver": "^7.3.8",
"shiki-processor": "^0.1.1",
Expand Down
130 changes: 91 additions & 39 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions rollup.config.ts
@@ -1,5 +1,5 @@
import { promises as fs } from 'fs'
import { builtinModules } from 'module'
import { builtinModules, createRequire } from 'module'
import { resolve } from 'path'
import { fileURLToPath } from 'url'
import { RollupOptions, defineConfig } from 'rollup'
Expand All @@ -10,7 +10,9 @@ import json from '@rollup/plugin-json'
import replace from '@rollup/plugin-replace'
import alias from '@rollup/plugin-alias'
import dts from 'rollup-plugin-dts'
import pkg from './package.json'

const require = createRequire(import.meta.url)
const pkg = require('./package.json')

const DEV = !!process.env.DEV
const PROD = !DEV
Expand Down

0 comments on commit 4df9288

Please sign in to comment.