Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
// # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
.pnp
// # dependencies
/node_modules
/.pnp
.pnp.js

# testing
coverage
coverage-ts
// # next.js
/.next/
/out/

# production
dist
/build

# misc
.DS_Store
Expand All @@ -20,4 +20,12 @@ dist
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# testing
/coverage
/coverage-ts

# storybook
storybook-static

dist
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"test:watch": "jest --watch",
"test": "jest --coverage",
"ts-coverage": "typescript-coverage-report",
"postinstall": "husky install"
"postinstall": "husky install",
"mrm": "mrm --preset=@storyofams/mrm-preset"
},
"peerDependencies": {
"@reach/alert": "0.13.2",
Expand Down Expand Up @@ -79,6 +80,7 @@
"@storybook/preset-typescript": "3.0.0",
"@storybook/react": "6.1.21",
"@storyofams/eslint-config-ams": "1.1.2",
"@storyofams/mrm-preset": "^1.1.0",
"@storyofams/react-helpers": "0.3.8",
"@styled-system/css": "5.1.5",
"@styled-system/props": "5.1.5",
Expand Down Expand Up @@ -127,6 +129,7 @@
"jest-axe": "4.1.0",
"jest-styled-components": "7.0.3",
"lint-staged": "10.5.3",
"mrm": "^2.6.0",
"next": "10.0.5",
"pinst": "^2.1.6",
"prettier": "2.2.1",
Expand Down
Loading