uni-string
Advanced tools
Comparing version 1.1.17 to 2.0.1
@@ -6,2 +6,29 @@ # Change Log | ||
## [2.0.1](https://github.com/bluelovers/ws-string/compare/uni-string@1.1.17...uni-string@2.0.1) (2022-09-16) | ||
### BREAKING CHANGES | ||
* update to tsdx | ||
### 📦 Code Refactoring | ||
* update to tsdx ([1466e17](https://github.com/bluelovers/ws-string/commit/1466e17a0966c03ed231de2e86267cc17ab89e2a)) | ||
* update to tsdx ([720d389](https://github.com/bluelovers/ws-string/commit/720d389186ef3344312829b57fead6bb54458b2c)) | ||
### 🛠 Build System | ||
* update build ([c759290](https://github.com/bluelovers/ws-string/commit/c759290cde63c366dccc67e50389f16d9f7af071)) | ||
### 🔖 Miscellaneous | ||
* . ([21c5c8d](https://github.com/bluelovers/ws-string/commit/21c5c8d85d84d749b3cb85e939be0687f1fcbcf7)) | ||
* . ([3fa368b](https://github.com/bluelovers/ws-string/commit/3fa368b5b93ba7cba2638e49e3f84af38c75fcfe)) | ||
## [1.1.17](https://github.com/bluelovers/ws-string/compare/uni-string@1.1.15...uni-string@1.1.17) (2022-08-27) | ||
@@ -8,0 +35,0 @@ |
{ | ||
"name": "uni-string", | ||
"version": "1.1.17", | ||
"version": "2.0.1", | ||
"description": "Unicode String object", | ||
@@ -23,3 +23,5 @@ "keywords": [ | ||
"unicode", | ||
"utf8" | ||
"utf8", | ||
"create-by-yarn-tool", | ||
"create-by-tsdx" | ||
], | ||
@@ -32,7 +34,27 @@ "homepage": "https://github.com/bluelovers/ws-string/tree/master/packages/uni-string#readme", | ||
"type": "git", | ||
"url": "git+https://github.com/bluelovers/ws-string.git" | ||
"url": "git+https://github.com/bluelovers/ws-string.git", | ||
"directory": "packages/uni-string" | ||
}, | ||
"license": "ISC", | ||
"author": "bluelovers", | ||
"main": "index.js", | ||
"sideEffects": false, | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.esm.mjs", | ||
"require": "./dist/index.cjs" | ||
}, | ||
"./package.json": "./package.json", | ||
"./src/*": "./src/*", | ||
"./src/core": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.esm.mjs", | ||
"require": "./dist/index.cjs" | ||
} | ||
}, | ||
"main": "dist/index.cjs", | ||
"unpkg": "dist/index.umd.production.min.cjs", | ||
"module": "dist/index.esm.mjs", | ||
"types": "dist/index.d.ts", | ||
"typings": "dist/index.d.ts", | ||
"directories": { | ||
@@ -42,22 +64,44 @@ "test": "test" | ||
"scripts": { | ||
"test": "jest -u", | ||
"pretest": "echo pretest", | ||
"test": "yarn run test:jest:snapshot", | ||
"test:jest": "jest --passWithNoTests", | ||
"test:jest:snapshot": "yarn run test:jest -- -u", | ||
"test:snapshot": "yarn run test -- -u", | ||
"posttest": "yarn run build", | ||
"build": "yarn run build:tsdx && yarn run build:dts:tsc", | ||
"build:dts:bundle": "ynpx dts-bundle-generator -o ./dist/index.d.ts ./src/index.ts --no-banner --inline-declare-global & echo build:dts:bundle", | ||
"build:dts:copy": "copy .\\src\\index.d.ts .\\dist\\index.d.ts & echo build:dts", | ||
"build:dts:tsc": "yarn run build:dts:tsc:emit && yarn run build:dts:copy", | ||
"build:dts:tsc:emit": "tsc --emitDeclarationOnly --declaration --noEmit false & echo build:dts:tsc:emit", | ||
"build:tsdx": "ynpx @bluelovers/tsdx build --target node", | ||
"ci:install": "echo ci:install", | ||
"ci:build": "echo ci:build", | ||
"npm:publish": "npm publish", | ||
"npm:publish:lerna": "npx lerna publish --yes --cd-version patch", | ||
"preversion": "yarn run test", | ||
"version": "echo version", | ||
"postversion": "echo postversion", | ||
"prepublish": "echo prepublish", | ||
"prepublish:lockfile": "npx sync-lockfile .", | ||
"prepare": "echo prepare", | ||
"prepublishOnly": "echo prepublishOnly", | ||
"prepublishOnly:update": "yarn run ncu && yarn run sort-package-json", | ||
"prepack": "echo prepack", | ||
"pack": "echo pack", | ||
"postpack": "echo postpack", | ||
"publish": "echo publish", | ||
"postpublish": "yarn run postpublishOnly:add", | ||
"postpublish_": "git commit -m \"chore(release): publish\" .", | ||
"postpublishOnly": "echo postpublishOnly", | ||
"postpublishOnly:add": "npx yarn-tool root run postpublishOnly:add uni-string", | ||
"ncu": "npx yarn-tool ncu -u", | ||
"sort-package-json": "npx yarn-tool sort" | ||
"sort-package-json": "npx yarn-tool sort", | ||
"tsc:showConfig": "ynpx get-current-tsconfig -p" | ||
}, | ||
"dependencies": { | ||
"es6-class-prototype": "^1.0.4", | ||
"runes2": "^1.0.7", | ||
"tslib": "^2" | ||
"runes2": "^1.0.8" | ||
}, | ||
"gitHead": "08d33a99aaaaf50c8eff6667b0f6129e6d917c3f" | ||
"packageManager": "yarn@1.22.19", | ||
"gitHead": "beda8c2c5884c685fc44226dc5e7da2db2fe5cd0" | ||
} |
@@ -15,4 +15,5 @@ # uni-string | ||
```ts | ||
import UString from 'uni-string'; | ||
const UString = require('uni-string') | ||
import UString from 'packages/uni-string/src/index'; | ||
const UString = require('packages/uni-string/src/index') | ||
``` | ||
@@ -19,0 +20,0 @@ |
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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
124748
2
17
993
67
2
1
1
- Removedtslib@^2
- Removedtslib@2.8.1(transitive)
Updatedrunes2@^1.0.8