@wessberg/stringutil
Advanced tools
Comparing version 1.0.5 to 1.0.6
@@ -1,2 +0,2 @@ | ||
export { StringUtil } from "./StringUtil/StringUtil"; | ||
export { IStringUtil } from "./StringUtil/Interface/IStringUtil"; | ||
export { StringUtil } from "./string-util/string-util"; | ||
export { IStringUtil } from "./string-util/i-string-util"; |
@@ -1,1 +0,2 @@ | ||
export { StringUtil } from "./StringUtil/StringUtil"; | ||
export { StringUtil } from "./string-util/string-util"; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@wessberg/stringutil", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "A class for performing simple operations on strings.", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/es2015/index.js", | ||
"browser": "./dist/es2015/index.js", | ||
"types": "./dist/es2015/index.d.ts", | ||
"typings": "./dist/es2015/index.d.ts", | ||
"repository": { | ||
@@ -18,12 +13,17 @@ "type": "git", | ||
"scripts": { | ||
"changelog:generate": "conventional-changelog --outfile CHANGELOG.md --release-count 0", | ||
"readme:changelog": "node node_modules/@wessberg/ts-config/readme/changelog/helper/add-changelog.js", | ||
"readme:badges": "node node_modules/@wessberg/ts-config/readme/badge/helper/add-badges.js", | ||
"readme:refresh": "npm run changelog:generate && npm run readme:changelog && npm run readme:badges", | ||
"commit:readme": "npm run readme:refresh && git commit -am \"Bumped version\" --no-verify || true", | ||
"clean:dist": "rm -r -f dist", | ||
"clean:compiled": "rm -r -f compiled", | ||
"clean": "npm run clean:dist && npm run clean:compiled", | ||
"tsc:dist:cjs": "tsc --module commonjs --outDir dist/cjs -p tsconfig.dist.json", | ||
"tsc:dist:umd": "tsc --module umd --outDir dist/umd -p tsconfig.dist.json", | ||
"tsc:dist:es2015": "tsc --module es2015 --outDir dist/es2015 -p tsconfig.dist.json", | ||
"tsc:test": "tsc --module commonjs --target es2017 --sourceMap", | ||
"tsc:test": "tsc --module umd --target es2017 --sourceMap", | ||
"build:pre": "npm run clean", | ||
"build:cjs": "npm run tsc:dist:cjs", | ||
"build:umd": "npm run tsc:dist:umd", | ||
"build:es2015": "npm run tsc:dist:es2015", | ||
"build": "npm run build:pre && npm run build:cjs && npm run build:es2015", | ||
"build": "npm run build:pre && npm run build:umd && npm run build:es2015", | ||
"tslint": "tslint -c tslint.json -p tsconfig.json", | ||
@@ -35,7 +35,7 @@ "validate": "npm run tslint && npm run test", | ||
"prepublishOnly": "npm run validate && npm run build", | ||
"precommit": "npm run validate && exit 0", | ||
"precommit": "npm run tslint && exit 0", | ||
"prepush": "npm run validate && exit 0", | ||
"publish:major": "npm version major && git push && npm publish", | ||
"publish:minor": "npm version minor && git push && npm publish", | ||
"publish:patch": "npm version patch && git push && npm publish" | ||
"publish:major": "npm version major && npm run commit:readme && git push && npm publish", | ||
"publish:minor": "npm version minor && npm run commit:readme && git push && npm publish", | ||
"publish:patch": "npm version patch && npm run commit:readme && git push && npm publish" | ||
}, | ||
@@ -51,13 +51,27 @@ "keywords": [ | ||
], | ||
"author": "Frederik Wessberg", | ||
"author": { | ||
"name": "Frederik Wessberg", | ||
"email": "frederikwessberg@hotmail.com", | ||
"url": "https://github.com/wessberg" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@wessberg/ts-config": "0.0.11", | ||
"@wessberg/ts-config": "0.0.20", | ||
"husky": "^0.14.3", | ||
"tslint": "^5.5.0", | ||
"typescript": "2.4.1" | ||
"tslint": "^5.6.0", | ||
"typescript": "2.4.2", | ||
"conventional-changelog-cli": "latest" | ||
}, | ||
"dependencies": { | ||
"tslib": "^1.7.1" | ||
}, | ||
"main": "./dist/umd/index.js", | ||
"module": "./dist/es2015/index.js", | ||
"browser": "./dist/es2015/index.js", | ||
"types": "./dist/es2015/index.d.ts", | ||
"typings": "./dist/es2015/index.d.ts", | ||
"es2015": "./dist/es2015/index.js", | ||
"engines": { | ||
"node": ">=7.4.0" | ||
} | ||
} |
@@ -1,2 +0,22 @@ | ||
# StringUtil [![NPM version][npm-image]][npm-url] | ||
# StringUtil | ||
[![NPM version][npm-version-image]][npm-version-url] | ||
[![Dev Dependencies][dev-dependencies-image]][dev-dependencies-url] | ||
[dev-dependencies-url]: https://david-dm.org/wessberg/typedetector?type=dev | ||
[dev-dependencies-image]: https://david-dm.org/hub.com/wessberg/StringUtil/dev-status.svg | ||
[![deps][deps-image]][deps-url] | ||
[deps-url]: https://david-dm.org/wessberg/typedetector | ||
[deps-image]: https://david-dm.org/hub.com/wessberg/StringUtil/status.svg | ||
[![License-mit][license-mit-image]][license-mit-url] | ||
[license-mit-url]: https://opensource.org/licenses/MIT | ||
[license-mit-image]: https://img.shields.io/badge/License-MIT-yellow.svg | ||
[npm-version-url]: https://www.npmjs.com/package/@wessberg/stringutil | ||
[npm-version-image]: https://badge.fury.io/js/%40wessberg%2Fstringutil.svg | ||
> A class for performing simple operations on strings. | ||
@@ -18,17 +38,57 @@ | ||
## Changelog: | ||
## Changelog | ||
**v1.0.2**: | ||
<a name="1.0.6"></a> | ||
## 1.0.6 (2017-08-08) | ||
- Switched to new ts-config setup. | ||
* 1.0.6 ([87998bb](https://github.com/wessberg/StringUtil/commit/87998bb)) | ||
* Added a few extra methods ([ce4e873](https://github.com/wessberg/StringUtil/commit/ce4e873)) | ||
**v1.0.1**: | ||
- Added documentation. | ||
**v1.0.0**: | ||
<a name="1.0.5"></a> | ||
## 1.0.5 (2017-07-11) | ||
- First release. | ||
* 1.0.5 ([750e48a](https://github.com/wessberg/StringUtil/commit/750e48a)) | ||
* Changed folder structure ([f517ee2](https://github.com/wessberg/StringUtil/commit/f517ee2)) | ||
* Switched to new ts-config setup. ([0173c2a](https://github.com/wessberg/StringUtil/commit/0173c2a)) | ||
[npm-url]: https://npmjs.org/package/@wessberg/stringutil | ||
[npm-image]: https://badge.fury.io/js/@wessberg/stringutil.svg | ||
<a name="1.0.4"></a> | ||
## 1.0.4 (2017-07-10) | ||
* added publish scripts ([30c6586](https://github.com/wessberg/StringUtil/commit/30c6586)) | ||
* added publish scripts)[@] ([3dc29ac](https://github.com/wessberg/StringUtil/commit/3dc29ac)) | ||
<a name="1.0.3"></a> | ||
## 1.0.3 (2017-07-10) | ||
* added publish scripts ([f0760aa](https://github.com/wessberg/StringUtil/commit/f0760aa)) | ||
* added publish scripts)[@] ([f7d8fd6](https://github.com/wessberg/StringUtil/commit/f7d8fd6)) | ||
<a name="1.0.2"></a> | ||
## 1.0.2 (2017-07-10) | ||
* (@added publish scripts)[@] ([e1264b6](https://github.com/wessberg/StringUtil/commit/e1264b6)) | ||
* @added publish scripts ([a9c417a](https://github.com/wessberg/StringUtil/commit/a9c417a)) | ||
<a name="1.0.1"></a> | ||
## 1.0.1 (2017-07-10) | ||
* 1.0.1 ([472bc86](https://github.com/wessberg/StringUtil/commit/472bc86)) | ||
* Added documentation. ([7ec0d7f](https://github.com/wessberg/StringUtil/commit/7ec0d7f)) | ||
* First commit ([01e96bc](https://github.com/wessberg/StringUtil/commit/01e96bc)) | ||
* process.argv[2] ([8a9b957](https://github.com/wessberg/StringUtil/commit/8a9b957)) | ||
* Update .gitignore ([b28e524](https://github.com/wessberg/StringUtil/commit/b28e524)) | ||
* Update package.json ([5ca4350](https://github.com/wessberg/StringUtil/commit/5ca4350)) | ||
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
48554
22
768
94
5