Skip to content

VuePress 2.0-rc0 #83

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

Merged
merged 21 commits into from
Jan 17, 2024
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- name: Install NodeJS
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
node-version: 18
node-version: 20

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm install

- name: Run linter
run: yarn run lint:check
run: npm run lint:check
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@ dist
config.local.js
basement_dist
.vscode
.idea
.idea

src/.vuepress/.cache
src/.vuepress/.temp
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ When contributing PRs, please do your best to follow these guidelines:

- Use present tense and active voice.
- Use sentence case in headers and other titles (e.g. "**C**reate **a**n **a**pplication").
- If you're adding a **new** article, add it to the `sidebar` object in `/src/.vuepress/config.js`.
- If you're adding a **new** article, add it to the `sidebar` object in `/src/.vuepress/config.ts`.
- If you're adding **code examples**, please include comments to explain what each function, section of code, etc. is achieving.
- Keep punctuation to the minimum necessary.
- Always capitalize "Passwordless.dev" and "Bitwarden".
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
"lint:check": "vuepress check-md src && prettier . --check && eslint \"**/*.{js,vue}\""
},
"dependencies": {
"@passwordlessdev/passwordless-client": "^1.1.2",
"vuepress-plugin-code-switcher": "^1.1.0"
"@passwordlessdev/passwordless-client": "^1.1.2"
},
"devDependencies": {
"@vuepress/plugin-docsearch": "^2.0.0-rc.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.17.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"vuepress": "^1.9.10",
"vuepress-plugin-check-md": "^0.0.3",
"check-md": "^1.0.2"
"vuepress": "^2.0.0-rc.0",
"vuepress-plugin-code-switcher": "^2.0.0",
"vuepress-plugin-md-enhance": "^2.0.0-rc.11"
}
}
3 changes: 0 additions & 3 deletions src/.vuepress/components/OtherComponent.vue

This file was deleted.

15 changes: 0 additions & 15 deletions src/.vuepress/components/demo-component.vue

This file was deleted.

135 changes: 0 additions & 135 deletions src/.vuepress/config.js

This file was deleted.

Loading