diff --git a/CHANGELOG.md b/CHANGELOG.md index 6654929..e2ad7b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.0.1 + +**breaking changes:** + +- rename type `CallBackForPropertyAccess` to `NameSelector`. +- rename function `separatedPathOf` to `pathOf`. +- rename function `pathOf` to `pathStringOf`. +- remove UMD build. + +**features:** + +- add functions `namesOf`, `pathStringsOf` and `PathsOf` + ## 0.1.14514 **breaking changes:** diff --git a/packages/ts-nameof-proxy/CHANGELOG.json b/packages/ts-nameof-proxy/CHANGELOG.json index 20d04f1..e3f41f2 100644 --- a/packages/ts-nameof-proxy/CHANGELOG.json +++ b/packages/ts-nameof-proxy/CHANGELOG.json @@ -1,26 +1,26 @@ { - "name": "ts-nameof-proxy", - "entries": [ - { - "date": "Sun, 17 Sep 2023 10:01:16 GMT", - "version": "1.0.0", - "tag": "ts-nameof-proxy_v1.0.0", - "comments": { - "major": [ - { - "author": "45930107+PinkChampagne17@users.noreply.github.com", - "package": "ts-nameof-proxy", - "commit": "0bbead0654fcbb8f504b2f1f17e792cfea372218", - "comment": "build!: remove comment and not build UMD version" - }, - { - "author": "45930107+PinkChampagne17@users.noreply.github.com", - "package": "ts-nameof-proxy", - "commit": "0bbead0654fcbb8f504b2f1f17e792cfea372218", - "comment": "feat!: rename the functions and remove deprecated type" - } - ] - } - } - ] + "name": "ts-nameof-proxy", + "entries": [ + { + "date": "Sun, 17 Sep 2023 10:01:16 GMT", + "version": "1.0.1", + "tag": "ts-nameof-proxy_v1.0.1", + "comments": { + "major": [ + { + "author": "45930107+PinkChampagne17@users.noreply.github.com", + "package": "ts-nameof-proxy", + "commit": "0bbead0654fcbb8f504b2f1f17e792cfea372218", + "comment": "build!: remove comment and not build UMD version" + }, + { + "author": "45930107+PinkChampagne17@users.noreply.github.com", + "package": "ts-nameof-proxy", + "commit": "0bbead0654fcbb8f504b2f1f17e792cfea372218", + "comment": "feat!: rename the functions and remove deprecated type" + } + ] + } + } + ] } diff --git a/packages/ts-nameof-proxy/CHANGELOG.md b/packages/ts-nameof-proxy/CHANGELOG.md index bd07ee1..ad1fb64 100644 --- a/packages/ts-nameof-proxy/CHANGELOG.md +++ b/packages/ts-nameof-proxy/CHANGELOG.md @@ -4,7 +4,7 @@ This log was last generated on Sun, 17 Sep 2023 10:01:16 GMT and should not be m -## 1.0.0 +## 1.0.1 Sun, 17 Sep 2023 10:01:16 GMT diff --git a/packages/ts-nameof-proxy/package.json b/packages/ts-nameof-proxy/package.json index b6e42e5..f7b6113 100644 --- a/packages/ts-nameof-proxy/package.json +++ b/packages/ts-nameof-proxy/package.json @@ -1,53 +1,53 @@ { - "name": "ts-nameof-proxy", - "version": "1.0.0", - "description": "`nameof` in TypeScript, no compiler required. Implemented using proxy with some limitations.", - "keywords": [ - "nameof", - "formik" - ], - "author": "pinkchampagne", - "homepage": "https://github.com/p-toy-factory/ts-nameof-proxy", - "license": "MIT", - "scripts": { - "build": "rimraf ./dist && rollup --config", - "lint": "eslint src --cache && prettier --check src", - "lint:fix": "eslint src --cache --fix && prettier --write src", - "test": "jest" - }, - "sideEffects": false, - "main": "./dist/index.js", - "module": "./dist/index.mjs", - "types": "./dist/index.d.ts", - "exports": { - "./package.json": "./package.json", - ".": { - "types": "./dist/index.d.ts", - "import": "./dist/index.mjs", - "require": "./dist/index.js" - } - }, - "files": [ - "dist/**/*.*" - ], - "devDependencies": { - "@babel/core": "^7.22.17", - "@babel/preset-env": "^7.22.15", - "@babel/preset-typescript": "^7.22.15", - "@rollup/plugin-typescript": "^11.1.3", - "@types/jest": "^29.5.4", - "@typescript-eslint/eslint-plugin": "^6.7.0", - "@typescript-eslint/parser": "^6.7.0", - "babel-jest": "^29.7.0", - "eslint": "^8.49.0", - "eslint-config-tnp": "workspace:*", - "jest": "^29.7.0", - "rimraf": "^5.0.1", - "rollup": "^3.29.1", - "rollup-plugin-dts": "^6.0.2", - "rollup-plugin-terser": "^7.0.2", - "ts-jest": "^29.1.1", - "tslib": "^2.6.2", - "typescript": "^5.2.2" - } + "name": "ts-nameof-proxy", + "version": "1.0.1", + "description": "`nameof` in TypeScript, no compiler required. Implemented using proxy with some limitations.", + "keywords": [ + "nameof", + "formik" + ], + "author": "pinkchampagne", + "homepage": "https://github.com/p-toy-factory/ts-nameof-proxy", + "license": "MIT", + "scripts": { + "build": "rimraf ./dist && rollup --config", + "lint": "eslint src --cache && prettier --check src", + "lint:fix": "eslint src --cache --fix && prettier --write src", + "test": "jest" + }, + "sideEffects": false, + "main": "./dist/index.js", + "module": "./dist/index.mjs", + "types": "./dist/index.d.ts", + "exports": { + "./package.json": "./package.json", + ".": { + "types": "./dist/index.d.ts", + "import": "./dist/index.mjs", + "require": "./dist/index.js" + } + }, + "files": [ + "dist/**/*.*" + ], + "devDependencies": { + "@babel/core": "^7.22.17", + "@babel/preset-env": "^7.22.15", + "@babel/preset-typescript": "^7.22.15", + "@rollup/plugin-typescript": "^11.1.3", + "@types/jest": "^29.5.4", + "@typescript-eslint/eslint-plugin": "^6.7.0", + "@typescript-eslint/parser": "^6.7.0", + "babel-jest": "^29.7.0", + "eslint": "^8.49.0", + "eslint-config-tnp": "workspace:*", + "jest": "^29.7.0", + "rimraf": "^5.0.1", + "rollup": "^3.29.1", + "rollup-plugin-dts": "^6.0.2", + "rollup-plugin-terser": "^7.0.2", + "ts-jest": "^29.1.1", + "tslib": "^2.6.2", + "typescript": "^5.2.2" + } }