-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* vuejs-dev: (558 commits) chore: sponsors chore: update sponsors chore: update sponsors chore: sponsor cleanup chore: update sponsors chore(package.json): Add sideEffects: false field in package.json (vuejs#8099) chore: new sponsor chore(typo): no dots at the end of the comments (vuejs#8087) chore: new sponsor chore: update sponsors chore: update sponsors chore: use reactive components count in benchmark (vuejs#7996) feat(weex): support object syntax of class (vuejs#7930) feat(server, webpack-plugin): webpack 4 support (vuejs#7839) fix(ssr): render initial and used async css chunks (vuejs#7902) fix(ssr): remove trailing hash in webpack module identifier when generating client manifest chore: new sponsor chore: update sponsor build: release 2.5.17-beta.0 build: build 2.5.17-beta.0 ...
- Loading branch information
Showing
356 changed files
with
71,731 additions
and
22,837 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
version: 2 | ||
|
||
defaults: &defaults | ||
working_directory: ~/project/vue | ||
docker: | ||
- image: circleci/node:6-browsers | ||
|
||
jobs: | ||
install: | ||
<<: *defaults | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
keys: | ||
- v1-vue-{{ .Branch }}-{{ checksum "yarn.lock" }} | ||
- v1-vue-{{ .Branch }}- | ||
- v1-vue- | ||
- run: npm install | ||
- save_cache: | ||
key: v1-vue-{{ .Branch }}-{{ checksum "yarn.lock" }} | ||
paths: | ||
- node_modules/ | ||
- persist_to_workspace: | ||
root: ~/project | ||
paths: | ||
- vue | ||
|
||
lint-flow-types: | ||
<<: *defaults | ||
steps: | ||
- attach_workspace: | ||
at: ~/project | ||
- run: npm run lint | ||
- run: npm run flow | ||
- run: npm run test:types | ||
|
||
test-cover: | ||
<<: *defaults | ||
steps: | ||
- attach_workspace: | ||
at: ~/project | ||
- run: npm run test:cover | ||
- run: | ||
name: report coverage stats for non-PRs | ||
command: | | ||
if [[ -z $CI_PULL_REQUEST ]]; then | ||
./node_modules/.bin/codecov | ||
fi | ||
test-e2e: | ||
<<: *defaults | ||
steps: | ||
- attach_workspace: | ||
at: ~/project | ||
- run: npm run test:e2e -- --env phantomjs | ||
|
||
test-ssr-weex: | ||
<<: *defaults | ||
steps: | ||
- attach_workspace: | ||
at: ~/project | ||
- run: npm run test:ssr | ||
- run: npm run test:weex | ||
|
||
workflows: | ||
version: 2 | ||
install-and-parallel-test: | ||
jobs: | ||
- install | ||
- test-cover: | ||
requires: | ||
- install | ||
- lint-flow-types: | ||
requires: | ||
- install | ||
- test-e2e: | ||
requires: | ||
- install | ||
- test-ssr-weex: | ||
requires: | ||
- install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
"plugin:flowtype/recommended" | ||
], | ||
"globals": { | ||
"__WEEX__": true | ||
"__WEEX__": true, | ||
"WXEnvironment": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.