Skip to content

Commit 1003835

Browse files
committed
chore(package): minor changes to package.json
added release scripts & changed description
1 parent b8e61a5 commit 1003835

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![Deps-Dev](https://david-dm.org/auru/unity-utils/dev-status.svg)](https://david-dm.org/auru/unity-utils)
99
[![Dependency Status](https://dependencyci.com/github/auru/unity-utils/badge)](https://dependencyci.com/github/auru/unity-utils)
1010

11-
> Some useful utility functions for the Unity team.
11+
> Useful utility functions for the Unity team.
1212
1313
# Table of Contents
1414
* [Installation](#installation)

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "unity-utils",
33
"version": "1.0.3",
4-
"description": "Some useful utility functions for the Unity team.",
4+
"description": "Useful utility functions for the Unity team.",
55
"main": "dist/index.js",
66
"scripts": {
77
"build": "npm run test && npm run clean && ./node_modules/.bin/babel src --out-dir dist",
@@ -17,7 +17,10 @@
1717
"precommit": "npm test",
1818
"commitmsg": "./node_modules/.bin/validate-commit-msg",
1919
"test": "npm run lint-prod && ./node_modules/.bin/nyc ./node_modules/.bin/ava --verbose",
20-
"test:watch": "npm run lint && ./node_modules/.bin/nyc ./node_modules/.bin/ava --verbose --watch"
20+
"test:watch": "npm run lint && ./node_modules/.bin/nyc ./node_modules/.bin/ava --verbose --watch",
21+
"release:patch": "npm run commit && npm version patch && git push upstream master --tags && npm publish",
22+
"release:minor": "npm run commit && npm version minor && git push upstream master --tags && npm publish",
23+
"release:major": "npm run commit && npm version major && git push upstream master --tags && npm publish"
2124
},
2225
"repository": {
2326
"type": "git",

0 commit comments

Comments
 (0)