Comparing version 2.4.0 to 2.5.0
@@ -0,1 +1,9 @@ | ||
# [2.5.0](https://github.com/xobotyi/cnbuilder/compare/v2.4.0...v2.5.0) (2020-05-21) | ||
### Features | ||
* add patreon funding link ([5e4ebce](https://github.com/xobotyi/cnbuilder/commit/5e4ebce409b718d3593f2530bea0ffe41ae96ba8)) | ||
* compatibility level now at ES5 ([de0b7b0](https://github.com/xobotyi/cnbuilder/commit/de0b7b0bf71341c0477ff7a6fe1bc6477d290e59)) | ||
# [2.4.0](https://github.com/xobotyi/cnbuilder/compare/v2.3.0...v2.4.0) (2020-03-02) | ||
@@ -2,0 +10,0 @@ |
import { ClassListArray } from './types'; | ||
export default function cnb(...args: ClassListArray): string; | ||
export declare function cnb(...args: ClassListArray): string; |
import { ClassListArray } from './types'; | ||
export default function dcnb(...args: ClassListArray): string; | ||
export declare function dcnb(...args: ClassListArray): string; |
@@ -1,2 +0,2 @@ | ||
export { default as cnb } from './cnb'; | ||
export { default as dcnb } from './dcnb'; | ||
export { cnb } from './cnb'; | ||
export { dcnb } from './dcnb'; |
{ | ||
"name": "cnbuilder", | ||
"description": "Yet another classname string builder (the fastest one)", | ||
"version": "2.4.0", | ||
"version": "2.5.0", | ||
"main": "dist/index.js", | ||
@@ -22,2 +22,6 @@ "module": "dist/index.esm.js", | ||
], | ||
"funding": { | ||
"type": "patreon", | ||
"url": "https://www.patreon.com/xobotyi" | ||
}, | ||
"repository": { | ||
@@ -35,20 +39,20 @@ "type": "git", | ||
"devDependencies": { | ||
"@semantic-release/changelog": "^5.0.0", | ||
"@semantic-release/changelog": "^5.0.1", | ||
"@semantic-release/git": "^9.0.0", | ||
"@semantic-release/npm": "^7.0.3", | ||
"@types/jest": "^25.1.2", | ||
"@xobotyi/eslint-config": "^1.3.1", | ||
"@semantic-release/npm": "^7.0.5", | ||
"@types/jest": "^25.2.3", | ||
"@xobotyi/eslint-config": "^1.9.0", | ||
"@xobotyi/preset-typescript": "^1.0.0", | ||
"eslint": "^6.8.0", | ||
"husky": "^4.2.3", | ||
"jest": "^25.1.0", | ||
"lint-staged": "^10.0.7", | ||
"prettier": "^1.19.1", | ||
"eslint": "^7.0.0", | ||
"husky": "^4.2.5", | ||
"jest": "^26.0.1", | ||
"lint-staged": "^10.2.4", | ||
"prettier": "^2.0.5", | ||
"rimraf": "^3.0.2", | ||
"rollup": "^1.31.1", | ||
"rollup-plugin-terser": "^5.2.0", | ||
"rollup-plugin-typescript2": "^0.26.0", | ||
"semantic-release": "^17.0.3", | ||
"ts-jest": "^25.2.0", | ||
"typescript": "^3.7.5" | ||
"rollup": "^2.10.5", | ||
"rollup-plugin-terser": "^5.3.0", | ||
"rollup-plugin-typescript2": "^0.27.1", | ||
"semantic-release": "^17.0.7", | ||
"ts-jest": "^26.0.0", | ||
"typescript": "^3.9.3" | ||
}, | ||
@@ -66,8 +70,6 @@ "scripts": { | ||
"./{src,tests}/**/*.ts": [ | ||
"yarn lint:fix", | ||
"git add" | ||
"yarn lint:fix" | ||
], | ||
"./*.{ts,js}": [ | ||
"yarn lint:fix", | ||
"git add" | ||
"yarn lint:fix" | ||
] | ||
@@ -74,0 +76,0 @@ }, |
@@ -52,4 +52,4 @@ <div align="center"> | ||
- `main` field of `package.json` is pointing to transpiled ES3 version with CJS modules resolution; | ||
- `module` field is pointing to transpiled ES3 version with ES modules resolution; | ||
- `main` field of `package.json` is pointing to transpiled ES5 version with CJS modules resolution; | ||
- `module` field is pointing to transpiled ES5 version with ES modules resolution; | ||
- `esnext` field is pointing to the ES6+ version with ES modules resolution; | ||
@@ -56,0 +56,0 @@ |
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
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
18042