-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
065db3e
commit b80aad8
Showing
4 changed files
with
89 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |