Skip to content

Commit

Permalink
chore: release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PinkChampagne17 committed Sep 17, 2023
1 parent 065db3e commit b80aad8
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 76 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:**
Expand Down
48 changes: 24 additions & 24 deletions packages/ts-nameof-proxy/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
"package": "ts-nameof-proxy",
"commit": "0bbead0654fcbb8f504b2f1f17e792cfea372218",
"comment": "build!: remove comment and not build UMD version"
},
{
"author": "[email protected]",
"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": "[email protected]",
"package": "ts-nameof-proxy",
"commit": "0bbead0654fcbb8f504b2f1f17e792cfea372218",
"comment": "build!: remove comment and not build UMD version"
},
{
"author": "[email protected]",
"package": "ts-nameof-proxy",
"commit": "0bbead0654fcbb8f504b2f1f17e792cfea372218",
"comment": "feat!: rename the functions and remove deprecated type"
}
]
}
}
]
}
2 changes: 1 addition & 1 deletion packages/ts-nameof-proxy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This log was last generated on Sun, 17 Sep 2023 10:01:16 GMT and should not be m

<!-- Start content -->

## 1.0.0
## 1.0.1

Sun, 17 Sep 2023 10:01:16 GMT

Expand Down
102 changes: 51 additions & 51 deletions packages/ts-nameof-proxy/package.json
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit b80aad8

Please sign in to comment.