Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
New insomnia-ui package with initial <NoticeTable/> component (#1869)
* Add insomnia-ui package with NoticeTable component and a few other examples

* Tweak icon placement and add insomnia-ui to insomnia-app package

* Add click handling and some extra styles to <NoticeTable/>

* New SvgIcon component and style tweaks

* Fix dependencies

* Fix button border

* Fix flow lint

* SvgIcon stories and lots of style updates

* Fix auto-formatting issue
  • Loading branch information
gschier committed Jan 6, 2020
1 parent d7f14fa commit 5a92964
Show file tree
Hide file tree
Showing 32 changed files with 20,928 additions and 1,528 deletions.
5 changes: 3 additions & 2 deletions .eslintignore
Expand Up @@ -3,8 +3,9 @@
docker/
screenshots/
**/*.min.js
packages/insomnia-app/build/
packages/insomnia-app/dist/
**/build/
**/dist/
**/.cache/
**/coverage/
**/node_modules/
**/webpack/
Expand Down
3 changes: 2 additions & 1 deletion .prettierignore
@@ -1,3 +1,4 @@
**/bin/*
**/build/*
**/dist/*
**/dist/*
**/flow-typed/*
1,840 changes: 319 additions & 1,521 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions package.json
Expand Up @@ -13,11 +13,12 @@
"publish": "lerna publish",
"clean": "lerna clean --yes && rimraf node_modules",
"test": "npm run lint && lerna run --stream --parallel test",
"app-start": "lerna run start --stream --parallel --bail",
"app-start": "lerna run start --scope insomnia-app --stream --parallel --bail",
"app-build": "lerna run build --stream --parallel --bail",
"app-package": "lerna run package --stream --parallel --bail",
"app-release": "lerna run release --stream --parallel --bail",
"app-storybook": "lerna run storybook --stream --parallel --bail",
"app-storybook": "lerna run storybook --scope insomnia-app --stream --parallel --bail",
"ui-storybook": "lerna run storybook --scope insomnia-ui --stream --parallel --bail",
"format-code": "prettier --write \"**/*.js\""
},
"husky": {
Expand All @@ -27,15 +28,16 @@
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-info": "^5.2.6",
"babel-eslint": "^8.2.3",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-inline-react-svg": "^1.1.0",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^4.19.1",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^11.0.0",
Expand Down

0 comments on commit 5a92964

Please sign in to comment.