-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
dd3335e
commit 6f016b0
Showing
138 changed files
with
27,166 additions
and
27,430 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 |
---|---|---|
@@ -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"] | ||
} | ||
} | ||
} |
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
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 |
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 |
---|---|---|
@@ -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 | ||
}, | ||
} | ||
] | ||
|
||
}; |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
/node_modules | ||
/.idea | ||
coverage | ||
npm-debug.log | ||
yarn-error.log |
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,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.
Oops, something went wrong.