Skip to content

Commit a991dad

Browse files
authored
Merge pull request #98 from vuejs/new-build-system
build: update the whole build system
2 parents dad8c8b + ccc4159 commit a991dad

17 files changed

+5273
-4759
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
node_modules
2-
/index.js
1+
/dist
2+
/node_modules
33
.DS_Store
4+
yarn-error.log

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
printWidth: 80
2+
semi: false
3+
singleQuote: true
4+
trailingComma: none

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# [6.0.0](https://github.com/vuejs/vuex-router-sync/compare/v5.0.0...v6.0.0) (2020-04-25)
2+
3+
4+
5+
# [5.0.0](https://github.com/vuejs/vuex-router-sync/compare/v4.1.0...v5.0.0) (2017-10-12)
6+
7+
8+
### Features
9+
10+
* add API for unsync([#66](https://github.com/vuejs/vuex-router-sync/issues/66)) ([693aa76](https://github.com/vuejs/vuex-router-sync/commit/693aa761f9e47df7f07c49c799c627b86d094402)), closes [#64](https://github.com/vuejs/vuex-router-sync/issues/64)
11+
12+
13+
14+
# [4.1.0](https://github.com/vuejs/vuex-router-sync/compare/v4.0.1...v4.1.0) (2017-01-02)
15+
16+
17+
18+
## [4.0.1](https://github.com/vuejs/vuex-router-sync/compare/v4.0.0...v4.0.1) (2016-12-14)
19+
20+
21+
22+
# [4.0.0](https://github.com/vuejs/vuex-router-sync/compare/v2.0.0...v4.0.0) (2016-12-14)
23+
24+
25+
26+
# 2.0.0 (2016-06-30)
27+
28+
29+

jest.config.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
preset: 'ts-jest',
3+
rootDir: __dirname,
4+
moduleNameMapper: {
5+
'^@/(.*)$': '<rootDir>/src/$1',
6+
'^test/(.*)$': '<rootDir>/test/$1'
7+
},
8+
testMatch: ['<rootDir>/test/**/*.spec.ts'],
9+
testPathIgnorePatterns: ['/node_modules/'],
10+
coverageDirectory: 'coverage',
11+
coverageReporters: ['json', 'lcov', 'text-summary', 'clover'],
12+
collectCoverageFrom: [
13+
'src/**/*.ts'
14+
]
15+
}

0 commit comments

Comments
 (0)