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

Combine V4 & V5 together #2248

Merged
merged 15 commits into from
Jan 23, 2020
Prev Previous commit
Next Next commit
Tweak CircleCI run
danielkcz committed Jan 22, 2020
commit 70b1df136161df45c71de517e8efb62a366d3a32
16 changes: 7 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -45,13 +45,13 @@ jobs:
paths:
- ./*

test-all:
test-check:
executor: my-executor
steps:
- attach_workspace:
at: .

- run: yarn test:all
- run: yarn test:check

test-performance:
executor: my-executor
@@ -121,13 +121,11 @@ workflows:
build-and-test:
jobs:
- build:
filters:
branches:
ignore:
- gh-pages
- test-all:
requires:
- build
filters:
branches:
ignore:
- gh-pages
- test-check
- test-performance:
requires:
- build
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -4,11 +4,9 @@ node_modules
npm-debug.log
coverage
notes.md
lib
test/babel-tests.js
test/typescript/typescript-tests.js
dist/
.build*/
.idea
.wp-build*/
*.iml
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -20,11 +20,9 @@
"test:mixed-versions": "jest --testRegex mixed-versions",
"test:check": "yarn test:types && yarn lint",
"test:types": "yarn tsc --noEmit && yarn test:flow",
"test:webpack": "node scripts/webpack-regression-tests.js",
"test:flow": "node_modules/.bin/flow check",
"test:webpack": "node scripts/webpack-regression-tests.js",
"test:performance": "PERSIST=true time node --expose-gc test/perf/index.js",
"test:ci": "yarn test:check && yarn test:performance && yarn test -i --coverage && yarn test:webpack && yarn size",
"test:es5": "yarn es-check es5 lib/mobx.js",
"size": "size-limit",
"prettier": "prettier \"**/*.js\" \"**/*.jsx\" \"**/*.tsx\" \"**/*.ts\" \"docs/**/*.md\"",
"_prepublish": "yarn small-build",
@@ -69,7 +67,6 @@
"chalk": "^1.1.3",
"conditional-type-checks": "^1.0.4",
"coveralls": "^3.0.3",
"es-check": "^5.0.0",
"eslint": "^5.15.2",
"flow-bin": "^0.59.0",
"fs-extra": "^7.0.1",