Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
Merge 6d8db97 into 5ff9b7f
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Quach committed Feb 22, 2019
2 parents 5ff9b7f + 6d8db97 commit 82360cb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ public
.env.production.local
.cache
yarn.lock
.awcache

npm-debug.log*
yarn-debug.log*
yarn-error.log*

storybook-static
11 changes: 11 additions & 0 deletions .storybook/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ module.exports = (baseConfig, env, config) => {
test: /\.(ts|tsx)$/,
exclude: /node_modules|tests/,
loader: require.resolve('awesome-typescript-loader'),
options: {
silent: true,
useCache: true,
usePrecompiledFiles: true,
transpileOnly: true,
},
})
config.resolve.extensions.push('.ts', '.tsx')

Expand All @@ -33,5 +39,10 @@ module.exports = (baseConfig, env, config) => {
})
config.resolve.extensions.push('.scss')

// Removes process logging
config.plugins = config.plugins.filter(
plugin => plugin.constructor.name !== 'ProgressPlugin'
)

return config
}
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ install:

script:
- npm run build:css
- npm run test:all
- npm run test
# # Disabled for now. Until we have more E2E tests
# - npm run test:cy
- npm run build

after_success:
Expand Down

0 comments on commit 82360cb

Please sign in to comment.