Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
feat: upgraded deno std to v0.61.0 and deno to v1.2.0
Browse files Browse the repository at this point in the history
feat: moved from npm to pnpm
  • Loading branch information
prisis committed Jul 15, 2020
1 parent c647faa commit 50b893b
Show file tree
Hide file tree
Showing 7 changed files with 5,404 additions and 6,826 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coding-standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
deno: ["1.0.5"]
deno: ["1.2.0"]

name: "Deno ${{ matrix.deno }} lint on ${{ matrix.operating-system }} OS"

Expand All @@ -35,4 +35,4 @@ jobs:
run: deno --version

- name: "lint code"
run: deno test ./test.ts
run: deno test ./test.ts
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
deno: ["1.0.5"]
deno: ["1.2.0"]

name: "Deno ${{ matrix.deno }} Test on ${{ matrix.os }} OS"

Expand All @@ -35,4 +35,4 @@ jobs:
run: deno --version

- name: "Run deno tests"
run: deno test ./test.ts
run: deno test ./test.ts
11 changes: 8 additions & 3 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,20 @@ jobs:
with:
node-version: "14.2.0"

- name: "Install pnpm"
run: |
npm install pnpm@next -g
pnpm --version
- name: "Cache dependencies"
uses: actions/cache@v1
with:
key: npm-${{ hashFiles('package-lock.json') }}
key: npm-${{ hashFiles('pnpm-lock.yaml') }}
path: ~/.npm
restore-keys: |
npm-
- name: "Install dependencies"
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
run: pnpm install --ignore-scripts --prefer-offline

- run: npm run lint
- run: pnpm run lint
6,811 changes: 0 additions & 6,811 deletions package-lock.json

This file was deleted.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,25 @@
"manualPublishMessage": "This repository is configured to use semantic-release for its releases. Please do not release manually.\n"
},
"dependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/core": "^8.2.0",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@commitlint/core": "^9.1.1",
"@textlint-rule/textlint-rule-no-invalid-control-character": "^1.2.0",
"@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.7",
"@textlint-rule/textlint-rule-preset-google": "^0.1.2",
"conventional-changelog-conventionalcommits": "^4.3.0",
"cz-conventional-changelog": "^3.0.2",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"textlint": "^11.6.3",
"textlint-rule-abbr-within-parentheses": "^1.0.2",
"textlint-rule-alex": "^1.3.1",
"textlint-rule-alex": "^2.0.0",
"textlint-rule-apostrophe": "^2.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-diacritics": "1.0.0",
"textlint-rule-en-capitalization": "^2.0.2",
"textlint-rule-footnote-order": "^1.0.3",
"textlint-rule-helper": "^2.1.1",
"textlint-rule-no-dead-link": "^4.6.2",
"textlint-rule-no-dead-link": "^4.7.0",
"textlint-rule-no-empty-section": "^1.1.0",
"textlint-rule-no-todo": "^2.0.1",
"textlint-rule-terminology": "^2.1.4",
Expand All @@ -53,6 +53,6 @@
},
"devDependencies": {
"minimist": ">=1.2.5",
"yargs-parser": ">=18.1.2"
"yargs-parser": ">=18.1.3"
}
}
Loading

0 comments on commit 50b893b

Please sign in to comment.