Skip to content

Commit fa1c5de

Browse files
committed
prepare release 0.0.1
1 parent fcbafc8 commit fa1c5de

2 files changed

Lines changed: 18 additions & 18 deletions

File tree

CHANGES.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## Unreleased
88

9+
## 2018/04/22 0.0.1
10+
911
### Added
1012

11-
- Initial Release/Commit can
12-
+ load all boards of the authenticated user
13-
+ filter it by the specified boards in the config
14-
+ display only cards of filtered lists (see config)
15-
+ and allow cards to be filtered by members
16-
- Move from Bitbucket to GitHub and Open-Source project
13+
* Initial Release/Commit can
14+
15+
* load all boards of the authenticated user
16+
* filter it by the specified boards in the config
17+
* display only cards of filtered lists (see config)
18+
* and allow cards to be filtered by members
19+
20+
* Move from Bitbucket to GitHub and Open-Source project

package.json

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "react-trello-multiboard",
33
"version": "0.0.0",
4-
"description": "React-Trello-Multiboard is a React application displaying multiple cards of several Trello boards and lists. The cards can be filtered by preferred team members.",
4+
"description":
5+
"React-Trello-Multiboard is a React application displaying multiple cards of several Trello boards and lists. The cards can be filtered by preferred team members.",
56
"repository": {
67
"type": "git",
78
"url": "git+https://github.com/natterstefan/react-trello-multiboard.git"
@@ -18,15 +19,17 @@
1819
"yarn": ">=1.3.0"
1920
},
2021
"scripts": {
21-
"build": "npm run build:clean-dist && cross-env NODE_ENV=production BABEL_ENV=production webpack -p --config webpack/prod.config.js",
22+
"build":
23+
"npm run build:clean-dist && cross-env NODE_ENV=production BABEL_ENV=production webpack -p --config webpack/prod.config.js",
2224
"build:clean-dist": "rm -rf dist",
2325
"build:dev": "npm run build:clean-dist && webpack --config webpack/dev.config.js",
2426
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
2527
"format": "eslint --fix ./src",
2628
"format:scss": "stylelint --fix ./src",
2729
"lint": "eslint ./src",
2830
"lint:scss": "stylelint ./src",
29-
"postinstall": "./node_modules/.bin/cpy \"./config/config.example.js\" \"./config\" --no-overwrite --rename=\"config.js\"",
31+
"postinstall":
32+
"./node_modules/.bin/cpy \"./config/config.example.js\" \"./config\" --no-overwrite --rename=\"config.js\"",
3033
"precommit": "lint-staged",
3134
"prepush": "npm test",
3235
"start": "webpack-dev-server --hot --config webpack/dev.config.js",
@@ -37,15 +40,8 @@
3740
"test:watch": "jest --watch"
3841
},
3942
"lint-staged": {
40-
"*.scss": [
41-
"stylelint --fix",
42-
"git add"
43-
],
44-
"*.js": [
45-
"eslint --fix",
46-
"git add",
47-
"jest --findRelatedTests"
48-
]
43+
"*.scss": ["stylelint --fix", "git add"],
44+
"*.js": ["eslint --fix", "git add", "jest --findRelatedTests"]
4945
},
5046
"peerDependencies": {
5147
"material-ui": "1.0.0-beta.36",

0 commit comments

Comments
 (0)