Skip to content

Commit 7cbf715

Browse files
committed
Merge branch 'master' of github.com:kpfromer/cu-api
2 parents 96e642a + 410aa9b commit 7cbf715

18 files changed

+339
-19
lines changed

.gitignore

100644100755
File mode changed.

.npmignore

100644100755
File mode changed.

.prettierrc.js

100644100755
File mode changed.

CHANGELOG.md

100644100755
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# [4.0.0](https://github.com/kpfromer/cu-api/compare/v3.0.2...v4.0.0) (2021-08-18)
2+
3+
4+
### Bug Fixes
5+
6+
* update to new cu api ([19be063](https://github.com/kpfromer/cu-api/commit/19be06397e670d698c3470a6649c230fa4e27077))
7+
8+
9+
### Features
10+
11+
* move to pnpm ([c19eef7](https://github.com/kpfromer/cu-api/commit/c19eef7daad4c7f562745b81f95e5a7e284e5e01))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* changes the cu api types to reflect current api.
17+
118
## [3.0.2](https://github.com/kpfromer/cu-api/compare/v3.0.1...v3.0.2) (2021-04-19)
219

320

LICENSE

100644100755
File mode changed.

README.md

100644100755
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ const CUSession = require('cu-api').CUSession;
5454
})();
5555
```
5656

57+
### CLI
58+
59+
Make sure to install `libsecret` (https://github.com/atom/node-keytar).
60+
5761
## How it Works
5862

5963
`cu-api` uses `superagent` a http request library to act like a user and login

commitlint.config.js

100644100755
File mode changed.

package.json

100644100755
Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cu-api",
3-
"version": "3.0.2",
3+
"version": "4.0.0",
44
"description": "An api for CU Boulder students.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -10,7 +10,9 @@
1010
"engines": {
1111
"node": ">=8.10.0"
1212
},
13-
"files": ["lib/**/*"],
13+
"files": [
14+
"lib/**/*"
15+
],
1416
"keywords": [
1517
"cu",
1618
"cu-boulder",
@@ -51,7 +53,10 @@
5153
"semantic-release": "17.4.2",
5254
"ts-node": "8.10.2",
5355
"tslint": "6.1.3",
54-
"typescript": "4.3.5"
56+
"typescript": "4.3.5",
57+
"@types/inquirer": "^7.3.3",
58+
"chalk": "^4.1.2",
59+
"inquirer": "^8.1.2"
5560
},
5661
"release": {
5762
"plugins": [

pnpm-lock.yaml

Lines changed: 151 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

renovate.json

100644100755
File mode changed.

0 commit comments

Comments
 (0)