Skip to content

Commit

Permalink
Remove double-dashes
Browse files Browse the repository at this point in the history
  • Loading branch information
illright committed Mar 1, 2024
1 parent 7d8ecc0 commit 885288c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pr-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
SAPPER_APP_BASEPATH: attractions/${{ github.event.number }}
run: |
pnpm install
pnpm run export -- --basepath attractions/${{ github.event.number }}
pnpm run export --basepath attractions/${{ github.event.number }}
- name: Save the PR number 📩
run: echo "${{ github.event.number }}" > ../pr_number.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
SAPPER_APP_BASEPATH: attractions/${{ github.event.inputs.prefix }}
run: |
pnpm install
pnpm run export -- --basepath attractions/${{ github.event.inputs.prefix }}
pnpm run export --basepath attractions/${{ github.event.inputs.prefix }}
- name: Publish 🚀
uses: peaceiris/actions-gh-pages@4eb285e828117bca26638192c3ed309c622e7bad
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
SAPPER_APP_BASEPATH: attractions
run: |
pnpm install
pnpm run export -- --basepath attractions
pnpm run export --basepath attractions
- name: Publish 🚀
uses: peaceiris/actions-gh-pages@4eb285e828117bca26638192c3ed309c622e7bad
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"private": true,
"scripts": {
"lint-js": "eslint . --ext \".svelte,.js\" --cache",
"lint-js:fix": "pnpm run lint-js -- --fix",
"lint-js:fix": "pnpm run lint-js --fix",
"lint-css": "stylelint . --cache",
"lint-css:fix": "pnpm run lint-css -- --fix",
"lint-css:fix": "pnpm run lint-css --fix",
"lint-svelte": "svelte-check --workspace attractions --diagnostic-sources svelte,css --output human --fail-on-warnings && svelte-check --workspace docs --diagnostic-sources svelte,css --output human --fail-on-warnings --ignore \"src/node_modules\"",
"lint-svelte:fix": "svelte-check --workspace attractions && svelte-check --workspace docs --ignore \"src/node_modules\"",
"lint-format": "prettier --plugin-search-dir=. --check .",
Expand Down

0 comments on commit 885288c

Please sign in to comment.