Skip to content

Commit 771dadc

Browse files
author
Alexander Belov
committed
chore(release): 1.0.1
1 parent 015d978 commit 771dadc

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
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+
### 1.0.1 (2019-08-30)

package.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algo-js/segment-tree",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Segment Tree implementation in TypeScript",
55
"main": "build/main/index.js",
66
"typings": "build/main/index.d.ts",
@@ -29,10 +29,9 @@
2929
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json",
3030
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
3131
"version": "standard-version",
32-
"reset": "git clean -dfx && git reset --hard && npm i",
3332
"clean": "trash build test",
34-
"prepare-release": "run-s reset test cov:check doc:html version doc:publish",
35-
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('@algo-js/segment-tree must be installed with Yarn: https://yarnpkg.com/')\""
33+
"prepare-release": "run-s test cov:check doc:html version doc:publish",
34+
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) console.warn('@algo-js/segment-tree must be installed with Yarn: https://yarnpkg.com/')\""
3635
},
3736
"scripts-info": {
3837
"info": "Display information about the package scripts",
@@ -44,15 +43,11 @@
4443
"doc": "Generate HTML API documentation and open it in a browser",
4544
"doc:json": "Generate API documentation in typedoc JSON format",
4645
"version": "Bump package.json version, update CHANGELOG.md, tag release",
47-
"reset": "Delete all untracked files and reset the repo to the last commit",
4846
"prepare-release": "One-step: clean, build, test, publish docs, and prep a release"
4947
},
5048
"engines": {
5149
"node": ">=8.9"
5250
},
53-
"dependencies": {
54-
"sha.js": "^2.4.11"
55-
},
5651
"devDependencies": {
5752
"ava": "2.2.0",
5853
"codecov": "^3.5.0",
@@ -67,6 +62,7 @@
6762
"tslint": "^5.18.0",
6863
"tslint-config-prettier": "^1.18.0",
6964
"tslint-immutable": "^6.0.1",
65+
"typedoc": "^0.15.0",
7066
"typescript": "^3.5.3"
7167
},
7268
"ava": {

0 commit comments

Comments
 (0)