Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to yarn #84

Merged
merged 1 commit into from
Oct 28, 2016
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ dist
docs/build
lib
coverage
yarn-error.log

# Exclude IDE project folders
*.sublime-project
Expand Down
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@ language: node_js
cache:
bundler: true
directories:
- node_modules
- $HOME/.yarn-cache
node_js:
- '6'
install:
- npm install -g yarn
- yarn install --pure-lockfile
script:
- yarn test
after_success:
- bash deploy_docs.sh
deploy:
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"test": "jest",
"test-watch": "jest --watchAll",
"lint": "eslint src docs",
"build": "npm run build:babel && npm run build:copy-files",
"build": "yarn run build:babel && yarn run build:copy-files",
"build:babel": "babel ./src --ignore *.spec.js --out-dir ./dist",
"build:copy-files": "cp ./README.md ./dist/",
"build:docs": "rm -rf ./docs/build; webpack --config ./docs/webpack.prod.config",
"prebuild": "rm -rf ./dist",
"prepublish": "npm run prebuild; npm run build",
"pretest": "npm run lint"
"prepublish": "yarn run prebuild; yarn run build",
"pretest": "yarn run lint"
},
"contributors": [
"Konstantin Krauss <konstantin@propertybase.com> (http://www.propertybase.com)",
Expand All @@ -45,6 +45,7 @@
},
"dependencies": {
"classnames": "^2.2.5",
"eslint": "3.7.1",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there's some comma-dangle hick hack going on ... so we stick to that version for now

Copy link
Contributor Author

@wwwdata wwwdata Oct 28, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fspoettel don't you just thumbs up, give me a real review and approve!!! 😄

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i thought i did, looks like i did not push the Approve button hard enough

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's ok, just make sure you are fully concentrated next time. It's important to stay focused when pressing buttons!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

giphy

"lodash.debounce": "^4.0.8",
"lodash.isstring": "^4.0.1",
"lodash.omit": "^4.5.0",
Expand Down