Skip to content

Commit

Permalink
chore: add changelog v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
QingWei-Li committed Mar 30, 2018
1 parent 4d0b863 commit e1809f7
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,7 @@
<a name="0.1.0"></a>

# 0.1.0 (2018-03-30)

### Features

https://laue.cinwell.com
39 changes: 38 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 21 additions & 11 deletions package.json
@@ -1,27 +1,28 @@
{
"name": "laue",
"version": "0.0.0",
"version": "0.1.0",
"description": "Modern charts for Vue.js",
"main": "dist/laue.umd.js",
"module": "dist/laue.js",
"sideEffects": false,
"scripts": {
"watch:lib": "rollup -c -w",
"watch:docs": "nuxt",
"build:lib":
"rollup -c --environment BUILD:production && banner-cli 'dist/*.js'",
"build:lib": "rollup -c --environment BUILD:production && banner-cli 'dist/*.js'",
"build:docs": "nuxt generate",
"lint": "eslint src --fix",
"dev": "run-p watch:*",
"build": "run-p build:*",
"pub": "sh ./scripts/release.sh",
"dev:test": "jest --watch",
"test": "jest --coverage",
"deploy:docs":
"gh-pages -d website/dist -t -r git@github.com:QingWei-Li/laue.git"
"deploy:docs": "gh-pages -d website/dist -t -r git@github.com:QingWei-Li/laue.git"
},
"repository": "QingWei-Li/laue",
"files": ["dist", "src"],
"files": [
"dist",
"src"
],
"keywords": [
"chart",
"svg",
Expand All @@ -41,24 +42,33 @@
"eslintConfig": {
"extends": "xo-space/browser",
"rules": {
"semi": [2, "never"],
"semi": [
2,
"never"
],
"no-mixed-operators": "off"
}
},
"jest": {
"transform": {
"^.+\\.js$": "buble-jest"
},
"transformIgnorePatterns": ["/node_modules/(?!d3-)"],
"snapshotSerializers": ["jest-serializer-vue"],
"collectCoverageFrom": ["<rootDir>/src/**/*.js"]
"transformIgnorePatterns": [
"/node_modules/(?!d3-)"
],
"snapshotSerializers": [
"jest-serializer-vue"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.js"
]
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.12",
"banner-cli": "^0.11.1",
"buble": "^0.19.3",
"buble-jest": "^1.0.0",
"conventional-changelog": "^1.1.23",
"conventional-changelog-cli": "^1.3.21",
"eslint": "^4.18.2",
"eslint-config-xo-space": "^0.18.0",
"eslint-plugin-jest": "^21.15.0",
Expand Down

0 comments on commit e1809f7

Please sign in to comment.