Skip to content

Commit fd4981e

Browse files
authored
test: create test examples and change test actions (#747)
* refactor: create test examples and change test actions * refactor: remove chart examples from src * chore(release): 3.5.2 * refactor: remove dev settings * refactor: remove changes from changelog * refactor: remove version change * refactor: change coverage folders
1 parent 3ad8ec8 commit fd4981e

Some content is hidden

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

59 files changed

+582
-1394
lines changed

.codeclimate.yml

-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ exclude_paths:
1515
- "es/"
1616
- "build/"
1717
- "config/"
18-
- "src/examples/**"

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -713,4 +713,4 @@ All notable changes to this project will be documented in this file. See [standa
713713
## [1.0.2](https://github.com/apertureless/vue-chartjs/tree/1.0.2) (2016-07-27)
714714

715715

716-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
716+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

README.md

-3
Original file line numberDiff line numberDiff line change
@@ -298,9 +298,6 @@ You can create your components in Vues single file components. However it is imp
298298
# install dependencies
299299
npm install
300300

301-
# serve with hot reload at localhost:8080
302-
npm run dev
303-
304301
# build for production with minification
305302
npm run build
306303

build/dev-client.js

-10
This file was deleted.

build/dev-server.js

-106
This file was deleted.

build/webpack.dev.conf.js

-36
This file was deleted.

codecov.yml

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ coverage:
2424

2525
ignore:
2626
- "tests/*"
27-
- "src/examples/*"
2827
- "src/mixins/*"
2928

3029

config/dev.env.js

-7
This file was deleted.

config/index.js

-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
'use strict'
32
// Template version: 1.1.1
43
// see http://vuejs-templates.github.io/webpack for documentation.
@@ -24,19 +23,5 @@ module.exports = {
2423
// `npm run build --report`
2524
// Set to `true` or `false` to always turn it on or off
2625
bundleAnalyzerReport: process.env.npm_config_report
27-
},
28-
dev: {
29-
env: require('./dev.env'),
30-
port: process.env.PORT || 8080,
31-
autoOpenBrowser: true,
32-
assetsSubDirectory: 'static',
33-
assetsPublicPath: '/',
34-
proxyTable: {},
35-
// CSS Sourcemaps off by default because relative paths are "buggy"
36-
// with this option, according to the CSS-Loader README
37-
// (https://github.com/webpack/css-loader#sourcemaps)
38-
// In our experience, they generally work as expected,
39-
// just be aware of this issue when enabling this option.
40-
cssSourceMap: false
4126
}
4227
}

config/test.env.js

-7
This file was deleted.

jest.config.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,7 @@
1919
}
2020
]
2121
},
22-
"moduleNameMapper": {
23-
"^@/(.*)$": "<rootDir>/src/$1"
24-
},
2522
"collectCoverage": true,
26-
"collectCoverageFrom": ["<rootDir>/src/examples/components/**"],
23+
"collectCoverageFrom": ["<rootDir>/src/**/*"],
2724
"coverageReporters": ["lcovonly", "text"]
2825
}

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
"types/*.d.ts"
4949
],
5050
"scripts": {
51-
"dev": "node build/dev-server.js",
5251
"build": "yarn run release && yarn run build:es",
5352
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
5453
"unit": "jest -c jest.config.json",

0 commit comments

Comments
 (0)