Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
☕ CHORE: upgrade to yarn 2
  • Loading branch information
warengonzaga committed Mar 30, 2022
commit 887282a80fb2bc291ae92a615ff24475d0439753
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,12 @@ dist/
.now
.env
.dccache

# yarn
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
546 changes: 546 additions & 0 deletions .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Large diffs are not rendered by default.

785 changes: 785 additions & 0 deletions .yarn/releases/yarn-3.2.0.cjs

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
nodeLinker: node-modules

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"

yarnPath: .yarn/releases/yarn-3.2.0.cjs
29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,28 +29,29 @@
"author": "Waren Gonzaga",
"license": "GPL-3.0",
"devDependencies": {
"@types/asciichart": "^1.5.4",
"@types/blessed": "^0.1.17",
"@types/express": "^4.17.11",
"@types/minimist": "^1.2.1",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.35",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1"
"@types/asciichart": "^1.5.6",
"@types/blessed": "^0.1.19",
"@types/express": "^4.17.13",
"@types/minimist": "^1.2.2",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.23",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0"
},
"bin": {
"covid": "./dist/cli.js"
},
"dependencies": {
"asciichart": "^1.5.25",
"axios": "^0.21.2",
"axios": "^0.26.1",
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.21",
"blessed-contrib": "^4.11.0",
"colors": "^1.4.0",
"express": "^4.17.1",
"minimist": "^1.2.5",
"express": "^4.17.3",
"minimist": "^1.2.6",
"morgan": "^1.10.0",
"typescript": "^4.2.3",
"typescript": "^4.6.3",
"world-countries": "^4.0.0"
}
},
"packageManager": "[email protected]"
}
Loading