Skip to content

Commit

Permalink
chore: release v3.0.0 (#13)
Browse files Browse the repository at this point in the history
* wip: change reactive functionality

* feat: reactivity fixes and caches

* chore: rename example projects

* chore: add nuxt example

* feat: add ssr support to new chimera

* feat: add serialization to ssr

* feat: add vue chimera component

* chore: update todo

* feat: tests and improvements

* feat: docs

* refactor: change resource name to endpoint

* wip: progress

* docs: add docs

* feat: axios abstraction and prototype base optioning

* feat: add rollup

* fix: lint

* wip: progress

* wip: minor fixes

* test: add tests

* refactor: prototype changes

* chore: lint

* feat: es entry

* chore: add release setup

* chore: add release setup

* chore: release v3.0.0

* feat: add codecov

* docs: add documents to vuepress

* fix: endpoint cancellation silent

* docs: add endpoint manual docs

Co-authored-by: Sasan Farrokh <s.farrokh@alibaba.ir>
  • Loading branch information
SasanFarrokh and Sasan Farrokh authored Mar 20, 2020
1 parent dd3335e commit 6f016b0
Show file tree
Hide file tree
Showing 138 changed files with 27,166 additions and 27,430 deletions.
15 changes: 14 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
{
"presets": [
["@babel/preset-env", {
"modules": false
}]
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
],
"env": {
"test": {
"presets": [
["@babel/preset-env"]
],
"plugins": ["@babel/plugin-transform-runtime"]
}
}
}
9 changes: 3 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
version: 2

defaults: &defaults
working_directory: ~/repo
docker:
# specify the version you desire here
- image: circleci/node:10-browsers
orbs:
codecov: codecov/codecov@1.0.2
- image: circleci/node:12-browsers

jobs:
setup:
<<: *defaults
Expand Down Expand Up @@ -55,8 +54,6 @@ jobs:
- attach_workspace:
at: ~/repo
- run: yarn test
- codecov/upload:
file: ./coverage/lcov.info

deploy:
<<: *defaults
Expand Down
8 changes: 6 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
**/*.js
!src/**/*.js
dist/*
coverage/*
example/**/*
node_modules/**/*
nuxt/*
!docs/.vuepress
20 changes: 17 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
module.exports = {
"extends": "standard",
"extends": ["standard", "plugin:vue/recommended"],
"plugins": [
'vue'
],
"rules": {
"no-console": ["error"],
"no-alert": ["error"],
"no-debugger": ["error"]
}
};
},
overrides: [
{
files: [
'tests/**/*.js',
],
env: {
jest: true
},
}
]

};
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/node_modules
/.idea
coverage
npm-debug.log
yarn-error.log
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# [3.0.0](https://github.com/chimera-js/vue-chimera/compare/v2.4.3...v3.0.0) (2020-03-18)



File renamed without changes.
Loading

0 comments on commit 6f016b0

Please sign in to comment.