Skip to content

Commit 0f45dbf

Browse files
authored
Merge pull request #72 from vuex-orm/next
The new start for Vuex ORM Axios
2 parents 456fa5a + 4039cdb commit 0f45dbf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+7141
-3482
lines changed

Diff for: .babelrc

-8
This file was deleted.

Diff for: .editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
trim_trailing_whitespace = true
7+
indent_style = space
8+
indent_size = 2
9+
10+
[*.md]
11+
trim_trailing_whitespace = false

Diff for: .eslintignore

-1
This file was deleted.

Diff for: .eslintrc.js

-10
This file was deleted.

Diff for: .gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

Diff for: .gitignore

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
/coverage
2+
/docs/.vuepress/dist
3+
/docs/node_modules
4+
/lib
15
/node_modules
26
yarn-error.log
3-
vuex-orm-axios*.tgz
4-
coverage

Diff for: .npmignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/build
2+
/coverage
3+
/test
4+
.*
5+
logo-vuex-orm.png
6+
tsconfig.build.json
7+
tsconfig.json
8+
tslint.json

Diff for: .travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: node_js
2+
node_js:
3+
- "10"
4+
- "12"
5+
script:
6+
- npm run lint
7+
- npm run coverage
8+
- cat ./coverage/lcov.info | ./node_modules/.bin/codecov

0 commit comments

Comments
 (0)