Skip to content

Commit 9981bee

Browse files
committed
chore(release): 0.0.11
1 parent 216c0fd commit 9981bee

File tree

2 files changed

+35
-9
lines changed

2 files changed

+35
-9
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
### [0.0.11](https://github.com/elforastero/pulsar-core/compare/v0.0.10...v0.0.11) (2020-12-21)

package.json

+30-9
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
11
{
22
"name": "@pulsar/core",
3-
"version": "0.0.10",
3+
"version": "0.0.11",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"license": "MIT",
77
"private": false,
8+
"repository": "git://github.com/elforastero/pulsar-core.git",
9+
"author": "Eugene Dzhumak",
10+
"keywords": [
11+
"react",
12+
"react-native",
13+
"react-native-web",
14+
"stylesheet",
15+
"dynamic stylesheet",
16+
"pulsar ui",
17+
"pulsar core"
18+
],
819
"scripts": {
920
"test": "jest",
1021
"size": "size-limit",
11-
"build": "rm -rf ./dist && tsc --outDir dist"
22+
"build": "rm -rf ./dist && tsc --outDir dist",
23+
"release": "standard-version"
1224
},
1325
"files": [
1426
"dist"
1527
],
16-
"size-limit": [
17-
{
18-
"path": "dist/index.js"
19-
}
20-
],
2128
"peerDependencies": {
2229
"react": "^16.13.1",
2330
"react-native": "^0.63.4"
@@ -53,7 +60,21 @@
5360
"react-native": "^0.63.4",
5461
"react-test-renderer": "^17.0.1",
5562
"size-limit": "^4.9.1",
56-
"typescript": "^4.1.2"
63+
"typescript": "^4.1.2",
64+
"@commitlint/cli": "^11.0.0",
65+
"@commitlint/config-conventional": "^11.0.0",
66+
"husky": "^4.3.0",
67+
"standard-version": "^9.0.0"
5768
},
58-
"dependencies": {}
69+
"dependencies": {},
70+
"husky": {
71+
"hooks": {
72+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
73+
}
74+
},
75+
"size-limit": [
76+
{
77+
"path": "dist/index.js"
78+
}
79+
]
5980
}

0 commit comments

Comments
 (0)