Skip to content

Commit

Permalink
1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
theetrain committed Feb 26, 2018
1 parent a2ffb62 commit 1c3d07c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### 1.0.4 (2018-02-26)

##### Bug Fixes

* **clickable:** Add default type ([#493](https://github.com/telusdigital/tds/pull/493)) ([a2ffb62c](https://github.com/telusdigital/tds/commit/a2ffb62c784fa5d46ecc609a8d517dcfdb47927e))

#### 1.0.3 (2018-02-14)

##### Build System / Dependencies
Expand Down
22 changes: 15 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"name": "@telusdigital/tds",
"version": "1.0.3",
"version": "1.0.4",
"description": "TELUS Design System",
"license": "MIT",
"main": "dist/tds.cjs.js",
"module": "dist/tds.es.js",
"files": ["dist", "packages", "src", "CHANGELOG.md", "CONTRIBUTING.md", "UPGRADING.md"],
"files": [
"dist",
"packages",
"src",
"CHANGELOG.md",
"CONTRIBUTING.md",
"UPGRADING.md"
],
"scripts": {
"build:css": "postcss --use cssnano --replace dist/tds.css",
"build:js": "rollup -c config/rollup.config.js",
Expand All @@ -19,10 +26,8 @@
"dev": "styleguidist server --config config/styleguide.config.js",
"gitbook": "gitbook serve guide",
"gitbook:install": "gitbook install guide",
"lint:js":
"eslint packages shared src config docs scripts --ext '.js,.jsx' --config config/.eslintrc.json --max-warnings 0 --fix",
"lint:scss":
"stylelint '{src/components,packages,shared}/**/*.scss' --config config/.stylelintrc.json",
"lint:js": "eslint packages shared src config docs scripts --ext '.js,.jsx' --config config/.eslintrc.json --max-warnings 0 --fix",
"lint:scss": "stylelint '{src/components,packages,shared}/**/*.scss' --config config/.stylelintrc.json",
"lint:ec": "echint",
"lint": "yarn lint:js && yarn lint:scss && yarn lint:ec",
"packup": "yarn build-package && yarn pack",
Expand Down Expand Up @@ -140,7 +145,10 @@
"bracketSpacing": true
},
"lint-staged": {
"*.{js,jsx}": ["eslint --config config/.eslintrc.json --max-warnings 0 --fix", "git add"],
"*.{js,jsx}": [
"eslint --config config/.eslintrc.json --max-warnings 0 --fix",
"git add"
],
"*.scss": "stylelint --config config/.stylelintrc.json",
"*": "echint"
},
Expand Down

0 comments on commit 1c3d07c

Please sign in to comment.