Skip to content

Commit 36ef204

Browse files
committed
chore(release): 0.0.7
1 parent 0fcabd1 commit 36ef204

File tree

2 files changed

+95
-83
lines changed

2 files changed

+95
-83
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.0.7](https://github.com/dico-app/dico-cli/compare/v0.0.6...v0.0.7) (2021-06-07)
6+
7+
8+
### Features
9+
10+
* add dico fetch command ([0fcabd1](https://github.com/dico-app/dico-cli/commit/0fcabd1337d1fbec68ae01838704bb23eeb2e5c3))
11+
12+
13+
### Refactor
14+
15+
* make endpoint not default to /api ([8149c0f](https://github.com/dico-app/dico-cli/commit/8149c0f3b822e82ab3269d338d8d1e7fa1a3b56d))
16+
517
### [0.0.6](https://github.com/dico-app/dico-cli/compare/v0.0.5...v0.0.6) (2021-06-03)
618

719

package.json

Lines changed: 83 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,85 @@
11
{
2-
"name": "@dico/cli",
3-
"version": "0.0.6",
4-
"description": "Dico.app Command Line Interface",
5-
"keywords": [
6-
"dico",
7-
"cli",
8-
"management"
9-
],
10-
"repository": {
11-
"type": "git",
12-
"url": "ssh://git@github.com/dico-app/dico-cli.git"
13-
},
14-
"license": "MIT",
15-
"author": "Lucie Haberer <hello@lihbr.com> (https://lihbr.com)",
16-
"bin": {
17-
"dico": "bin/cli.js"
18-
},
19-
"files": [
20-
"bin",
21-
"postinstall.js"
22-
],
23-
"scripts": {
24-
"build": "siroc build",
25-
"dev": "siroc build --watch",
26-
"release": "yarn build && yarn test && standard-version && git push --follow-tags && yarn build && npm publish",
27-
"release:dry": "yarn build && yarn test && standard-version --dry-run",
28-
"lint": "eslint --ext .js,.ts .",
29-
"unit": "nyc --reporter=lcovonly --reporter=text --exclude-after-remap=false ava",
30-
"test": "yarn lint && yarn unit",
31-
"postinstall": "node postinstall.js"
32-
},
33-
"husky": {
34-
"hooks": {
35-
"pre-commit": "yarn lint",
36-
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS"
37-
}
38-
},
39-
"dependencies": {
40-
"@lihbr/listr-update-renderer": "^0.5.1",
41-
"cac": "^6.7.3",
42-
"chalk": "^4.1.1",
43-
"consola": "^2.15.3",
44-
"detect-indent": "^6.1.0",
45-
"execa": "^5.1.1",
46-
"exit": "^0.1.2",
47-
"globby": "^11.0.3",
48-
"inquirer": "^8.1.0",
49-
"latest-version": "^5.1.0",
50-
"listr": "^0.14.3",
51-
"node-fetch": "^2.6.1",
52-
"rc9": "^1.2.0",
53-
"rxjs": "^7.1.0",
54-
"semver": "^7.3.5"
55-
},
56-
"devDependencies": {
57-
"@commitlint/cli": "12.1.4",
58-
"@commitlint/config-conventional": "12.1.4",
59-
"@types/exit": "0.1.31",
60-
"@types/inquirer": "7.3.1",
61-
"@types/listr": "0.14.3",
62-
"@types/node-fetch": "2.5.10",
63-
"@types/semver": "7.3.6",
64-
"@typescript-eslint/eslint-plugin": "4.26.0",
65-
"@typescript-eslint/parser": "4.26.0",
66-
"ava": "3.15.0",
67-
"eslint": "7.27.0",
68-
"eslint-config-prettier": "8.3.0",
69-
"eslint-plugin-prettier": "3.4.0",
70-
"husky": "4.3.8",
71-
"nyc": "15.1.0",
72-
"prettier": "2.3.0",
73-
"siroc": "0.11.0",
74-
"standard-version": "9.3.0",
75-
"ts-eager": "2.0.2",
76-
"ts-essentials": "7.0.1",
77-
"typescript": "4.3.2"
78-
},
79-
"engines": {
80-
"node": ">=12.0.0"
81-
},
82-
"publishConfig": {
83-
"access": "public"
84-
}
2+
"name": "@dico/cli",
3+
"version": "0.0.7",
4+
"description": "Dico.app Command Line Interface",
5+
"keywords": [
6+
"dico",
7+
"cli",
8+
"management"
9+
],
10+
"repository": {
11+
"type": "git",
12+
"url": "ssh://git@github.com/dico-app/dico-cli.git"
13+
},
14+
"license": "MIT",
15+
"author": "Lucie Haberer <hello@lihbr.com> (https://lihbr.com)",
16+
"bin": {
17+
"dico": "bin/cli.js"
18+
},
19+
"files": [
20+
"bin",
21+
"postinstall.js"
22+
],
23+
"scripts": {
24+
"build": "siroc build",
25+
"dev": "siroc build --watch",
26+
"release": "yarn build && yarn test && standard-version && git push --follow-tags && yarn build && npm publish",
27+
"release:dry": "yarn build && yarn test && standard-version --dry-run",
28+
"lint": "eslint --ext .js,.ts .",
29+
"unit": "nyc --reporter=lcovonly --reporter=text --exclude-after-remap=false ava",
30+
"test": "yarn lint && yarn unit",
31+
"postinstall": "node postinstall.js"
32+
},
33+
"husky": {
34+
"hooks": {
35+
"pre-commit": "yarn lint",
36+
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS"
37+
}
38+
},
39+
"dependencies": {
40+
"@lihbr/listr-update-renderer": "^0.5.1",
41+
"cac": "^6.7.3",
42+
"chalk": "^4.1.1",
43+
"consola": "^2.15.3",
44+
"detect-indent": "^6.1.0",
45+
"execa": "^5.1.1",
46+
"exit": "^0.1.2",
47+
"globby": "^11.0.3",
48+
"inquirer": "^8.1.0",
49+
"latest-version": "^5.1.0",
50+
"listr": "^0.14.3",
51+
"node-fetch": "^2.6.1",
52+
"rc9": "^1.2.0",
53+
"rxjs": "^7.1.0",
54+
"semver": "^7.3.5"
55+
},
56+
"devDependencies": {
57+
"@commitlint/cli": "12.1.4",
58+
"@commitlint/config-conventional": "12.1.4",
59+
"@types/exit": "0.1.31",
60+
"@types/inquirer": "7.3.1",
61+
"@types/listr": "0.14.3",
62+
"@types/node-fetch": "2.5.10",
63+
"@types/semver": "7.3.6",
64+
"@typescript-eslint/eslint-plugin": "4.26.0",
65+
"@typescript-eslint/parser": "4.26.0",
66+
"ava": "3.15.0",
67+
"eslint": "7.27.0",
68+
"eslint-config-prettier": "8.3.0",
69+
"eslint-plugin-prettier": "3.4.0",
70+
"husky": "4.3.8",
71+
"nyc": "15.1.0",
72+
"prettier": "2.3.0",
73+
"siroc": "0.11.0",
74+
"standard-version": "9.3.0",
75+
"ts-eager": "2.0.2",
76+
"ts-essentials": "7.0.1",
77+
"typescript": "4.3.2"
78+
},
79+
"engines": {
80+
"node": ">=12.0.0"
81+
},
82+
"publishConfig": {
83+
"access": "public"
84+
}
8585
}

0 commit comments

Comments
 (0)