Skip to content

Commit

Permalink
up deps, release v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
smastrom committed Jul 6, 2023
1 parent 942e497 commit c6bafd0
Show file tree
Hide file tree
Showing 5 changed files with 334 additions and 681 deletions.
10 changes: 5 additions & 5 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "vue-tsc && vite build",
"build": "vite build",
"dev": "vite",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^18.16.18",
"@types/node": "^18.16.19",
"@vitejs/plugin-vue": "^4.2.3",
"postcss-nesting": "^11.3.0",
"lightningcss": "^1.21.5",
"typescript": "^4.9.5",
"vite": "^4.3.9",
"vue-tsc": "^1.8.1"
"vite": "^4.4.1",
"vue-tsc": "^1.8.4"
},
"dependencies": {
"date-fns": "^2.30.0",
Expand Down
11 changes: 8 additions & 3 deletions demo/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
import { defineConfig } from 'vite'
import { resolve } from 'path'
import vue from '@vitejs/plugin-vue'
import postCSSNesting from 'postcss-nesting'

export default defineConfig({
css: {
postcss: {
plugins: [postCSSNesting],
transformer: 'lightningcss',
lightningcss: {
drafts: {
nesting: true,
},
},
},
build: {
cssMinify: 'lightningcss',
},
resolve: {
alias: {
'@/lib': resolve(__dirname, './lib'),
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.3",
"version": "1.0.4",
"private": true,
"packageManager": "pnpm@8.6.3",
"engines": {
Expand All @@ -24,8 +24,8 @@
"pretty-quick": "^3.1.3",
"rimraf": "^4.4.1",
"typescript": "^4.9.5",
"vite": "^4.3.9",
"vite": "^4.4.1",
"vue": "^3.3.4",
"vue-tsc": "^1.8.3"
"vue-tsc": "^1.8.4"
}
}
12 changes: 6 additions & 6 deletions packages/notivue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "notivue",
"version": "1.0.3",
"version": "1.0.4",
"private": false,
"description": "Fully-featured toast notification system for Vue and Nuxt.",
"keywords": [
Expand Down Expand Up @@ -52,19 +52,19 @@
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@types/node": "^18.16.18",
"@types/node": "^18.16.19",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/test-utils": "^2.4.0",
"axe-core": "^4.7.2",
"cypress": "^12.15.0",
"cypress": "^12.17.0",
"cypress-axe": "^1.4.0",
"cypress-real-events": "^1.8.1",
"esbuild": "^0.18.8",
"esbuild": "^0.18.11",
"rimraf": "^4.4.1",
"typescript": "^4.9.5",
"vite": "^4.3.9",
"vite": "^4.4.1",
"vite-plugin-dts": "^2.3.0",
"vue": "^3.3.4",
"vue-tsc": "^1.8.1"
"vue-tsc": "^1.8.4"
}
}
Loading

0 comments on commit c6bafd0

Please sign in to comment.