Skip to content

Commit

Permalink
fix: Moved postinstall to dev:prepare script
Browse files Browse the repository at this point in the history
chore: Bumped versions of all dependencies in all workspaces
  • Loading branch information
oyedejioyewole committed Jan 4, 2024
1 parent 4307517 commit b5c4b9b
Show file tree
Hide file tree
Showing 5 changed files with 542 additions and 452 deletions.
6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -52,7 +52,8 @@ or locally for either

1. Clone the repository
2. Install dependencies with `pnpm install`
3. Run development server with `pnpm docs:dev`
3. Setup module for development with `pnpm dev:prepare`
4. Run development server with `pnpm docs:dev`

**Note:** Hosted on Vercel

Expand All @@ -64,7 +65,8 @@ or

1. Clone the repository
2. Install dependencies with `pnpm install`
3. Run development server with `pnpm playground:dev`
3. Setup module for development with `pnpm dev:prepare`
4. Run development server with `pnpm playground:dev`

<!-- Badges -->

Expand Down
8 changes: 4 additions & 4 deletions docs/package.json
Expand Up @@ -17,14 +17,14 @@
"@vueuse/nuxt": "^10.7.1",
"nuxt": "^3.9.0",
"nuxt-bootstrap-icons": "workspace:^",
"nuxt-og-image": "3.0.0-rc.13",
"sass": "^1.69.6",
"vue": "^3.4.3",
"nuxt-og-image": "3.0.0-rc.21",
"sass": "^1.69.7",
"vue": "^3.4.5",
"vue-router": "^4.2.5"
},
"dependencies": {
"@bobthered/tailwindcss-palette-generator": "^3.2.3",
"notivue": "^2.0.1"
"notivue": "^2.1.1"
},
"optionalDependencies": {
"prettier": "^3.1.1",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -21,21 +21,21 @@
"dist"
],
"scripts": {
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && tsc --module nodenext setup.ts && node setup.js && pnpm lint",
"docs:build": "pnpm --filter docs build",
"docs:dev": "pnpm --filter docs dev",
"lint": "eslint . --fix",
"playground:build": "pnpm --filter playground build",
"playground:dev": "pnpm --filter playground dev",
"playground:generate": "pnpm --filter playground generate",
"postinstall": "nuxt-module-build build --stub && nuxt-module-build prepare && tsc --module nodenext setup.ts && node setup.js && pnpm lint",
"prepack": "nuxt-module-build build",
"release:major": "pnpm lint && pnpm prepack && changelogen --release --major --output docs/content/release-notes.md && git push --follow-tags",
"release:minor": "pnpm lint && pnpm prepack && changelogen --release --minor --output docs/content/release-notes.md && git push --follow-tags",
"release:patch": "pnpm lint && pnpm prepack && changelogen --release --patch --output docs/content/release-notes.md && git push --follow-tags"
},
"dependencies": {
"@nuxt/kit": "^3.9.0",
"bootstrap-icons": "^1.11.2"
"bootstrap-icons": "^1.11.3"
},
"devDependencies": {
"@nuxt/devtools": "1.0.6",
Expand All @@ -48,4 +48,4 @@
"nuxt": "^3.9.0",
"typescript": "^5.3.3"
}
}
}
2 changes: 1 addition & 1 deletion playground/package.json
Expand Up @@ -9,6 +9,6 @@
"postinstall": "nuxi prepare"
},
"devDependencies": {
"nuxt": "^3.7.4"
"nuxt": "^3.9.0"
}
}

0 comments on commit b5c4b9b

Please sign in to comment.