Skip to content
This repository has been archived by the owner on Nov 17, 2021. It is now read-only.

Update build process to use Webpack #63

Merged
merged 5 commits into from
Feb 21, 2020
Merged
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
6 changes: 0 additions & 6 deletions .parcelrc

This file was deleted.

26 changes: 0 additions & 26 deletions .postcssrc

This file was deleted.

10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: node_js
node_js: '10'
node_js: '12'

os:
- linux
Expand All @@ -10,10 +10,6 @@ branches:
- 'next'

script:
- npm run build
# The `--no-cache` flag disables Parcel's cache as it can cause errors with building
# same entries targeting different destinations.
- npm run docs -- --no-cache
- npm run lint
- npm run test:unit
- '[[ ! -z "$SAUCE_ACCESS_KEY" ]] && travis_wait npm run test:visual || true'
Expand All @@ -22,6 +18,10 @@ after_success:
# Upload screenshots to Argos
- '[[ ! -z "$ARGOS_TOKEN" ]] && argos upload test/screenshots/local -C $TRAVIS_COMMIT -B $TRAVIS_BRANCH -T $ARGOS_TOKEN || true'

before_deploy:
- npm run build
- npm run docs

deploy:
- provider: script
script: npx semantic-release
Expand Down
Loading