Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules/
npm-debug.log
coverage/
dist/
.idea/
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shell-emulator=true
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "floating-vue-monorepo",
"packageManager": "pnpm@8.6.2",
"packageManager": "pnpm@9.6.0",
"version": "5.2.2",
"private": true,
"scripts": {
Expand Down
5 changes: 2 additions & 3 deletions packages/floating-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "Easy Vue tooltips, dropdowns, menus & popovers using floating-ui",
"author": "Guillaume Chau <[email protected]>",
"scripts": {
"dev": "cross-env NODE_ENV=development vite build --watch",
"build": "cross-env NODE_ENV=production vite build && vue-tsc -d --emitDeclarationOnly",
"dev": "NODE_ENV=development vite build --watch",
"build": "NODE_ENV=production vite build && vue-tsc -d --emitDeclarationOnly",
"prepublishOnly": "pnpm run test && pnpm run build",
"test": "pnpm run test:unit",
"test:unit": "peeky run"
Expand Down Expand Up @@ -48,7 +48,6 @@
"@vitejs/plugin-vue": "^4.2.3",
"@vue/test-utils": "^1.3.6",
"babel-jest": "^29.5.0",
"cross-env": "^7.0.3",
"fs-extra": "^11.1.1",
"vite": "^4.3.9",
"vue": "^3.3.4",
Expand Down
Loading