Skip to content

refactor(docs): replace yarn -> pnpm + switch pnpn workspace #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ Add `@fedorae/nuxt-uikit` to the modules section of your `nuxt.config.ts` file:
```
# Development

- Run `yarn dev:prepare` to generate type stubs.
- Use `yarn dev` to start [playground](./playground) in development mode.
- Run `pnpm dev:prepare` to generate type stubs.
- Use `pnpm dev` to start [playground](./playground) in development mode.

## Credits
Nuxt UIkit Image - [https://codesandbox.io/s/pjmkmvp327](https://codesandbox.io/s/pjmkmvp327) ([pdipasqua](https://codesandbox.io/u/pdipasqua))
Expand Down
1 change: 0 additions & 1 deletion docs/.npmrc

This file was deleted.

5 changes: 2 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
"build": "nuxi build",
"generate": "nuxi generate",
"preview": "nuxi preview",
"clean": "rm -rf .nuxt && rm -rf node_modules && rm -rf yarn.lock"
"clean": "rm -rf .nuxt && rm -rf node_modules"
},
"devDependencies": {
"@nuxt-themes/docus": "^1.15.1",
"nuxt": "^3.15.1"
"@nuxt-themes/docus": "^1.15.1"
}
}
9,471 changes: 0 additions & 9,471 deletions docs/yarn.lock

This file was deleted.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground && yarn uikit",
"release": "yarn lint && yarn test && yarn prepack && changelogen --release && yarn publish && git push --follow-tags",
"upgrade-uikit": "yarn upgrade uikit && cp node_modules/uikit/dist/js/uikit.min.js src/runtime/public/ && cp node_modules/uikit/dist/js/uikit-icons.min.js src/runtime/public/",
"clean": "rm -rf .nuxt && rm -rf node_modules && rm -rf yarn.lock",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground && pnpm uikit",
"release": "pnpm lint && pnpm test && pnpm prepack && changelogen --release && pnpm publish && git push --follow-tags",
"upgrade-uikit": "pnpm upgrade uikit && cp node_modules/uikit/dist/js/uikit.min.js src/runtime/public/ && cp node_modules/uikit/dist/js/uikit-icons.min.js src/runtime/public/",
"clean": "rm -rf .nuxt && rm -rf node_modules && rm -rf pnpm-lock.yaml",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
Expand Down
Loading