Skip to content

Commit

Permalink
feat: mvp
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoban committed Feb 15, 2024
1 parent 61a5a71 commit 7a82cce
Show file tree
Hide file tree
Showing 7 changed files with 2,243 additions and 75 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
# pkg-placeholder
# release-it-pnpm

[![npm version][npm-version-src]][npm-version-href]
[![npm downloads][npm-downloads-src]][npm-downloads-href]
[![bundle][bundle-src]][bundle-href]
[![JSDocs][jsdocs-src]][jsdocs-href]
[![License][license-src]][license-href]

$description$
Run release-it with pnpm workspace

## License

[MIT](./LICENSE) License © 2023-PRESENT [Stephen Zhou](https://github.com/hyoban)

<!-- Badges -->

[npm-version-src]: https://img.shields.io/npm/v/pkg-placeholder?style=flat&colorA=080f12&colorB=1fa669
[npm-version-href]: https://npmjs.com/package/pkg-placeholder
[npm-downloads-src]: https://img.shields.io/npm/dm/pkg-placeholder?style=flat&colorA=080f12&colorB=1fa669
[npm-downloads-href]: https://npmjs.com/package/pkg-placeholder
[bundle-src]: https://img.shields.io/bundlephobia/minzip/pkg-placeholder?style=flat&colorA=080f12&colorB=1fa669&label=minzip
[bundle-href]: https://bundlephobia.com/result?p=pkg-placeholder
[license-src]: https://img.shields.io/github/license/hyoban/pkg-placeholder.svg?style=flat&colorA=080f12&colorB=1fa669
[license-href]: https://github.com/hyoban/pkg-placeholder/blob/main/LICENSE
[npm-version-src]: https://img.shields.io/npm/v/release-it-pnpm?style=flat&colorA=080f12&colorB=1fa669
[npm-version-href]: https://npmjs.com/package/release-it-pnpm
[npm-downloads-src]: https://img.shields.io/npm/dm/release-it-pnpm?style=flat&colorA=080f12&colorB=1fa669
[npm-downloads-href]: https://npmjs.com/package/release-it-pnpm
[bundle-src]: https://img.shields.io/bundlephobia/minzip/release-it-pnpm?style=flat&colorA=080f12&colorB=1fa669&label=minzip
[bundle-href]: https://bundlephobia.com/result?p=release-it-pnpm
[license-src]: https://img.shields.io/github/license/hyoban/release-it-pnpm.svg?style=flat&colorA=080f12&colorB=1fa669
[license-href]: https://github.com/hyoban/release-it-pnpm/blob/main/LICENSE
[jsdocs-src]: https://img.shields.io/badge/jsdocs-reference-080f12?style=flat&colorA=080f12&colorB=1fa669
[jsdocs-href]: https://www.jsdocs.io/package/pkg-placeholder
[jsdocs-href]: https://www.jsdocs.io/package/release-it-pnpm
31 changes: 24 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
{
"name": "pkg-placeholder",
"name": "release-it-pnpm",
"type": "module",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@8.15.2",
"description": "$description$",
"description": "Run release-it with pnpm workspace",
"author": "Stephen Zhou <hi@hyoban.cc>",
"license": "MIT",
"homepage": "https://github.com/hyoban/pkg-placeholder#readme",
"homepage": "https://github.com/hyoban/release-it-pnpm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hyoban/pkg-placeholder.git"
"url": "git+https://github.com/hyoban/release-it-pnpm.git"
},
"bugs": "https://github.com/hyoban/pkg-placeholder/issues",
"keywords": [],
"bugs": "https://github.com/hyoban/release-it-pnpm/issues",
"keywords": [
"release",
"release-it",
"release-it-plugin"
],
"sideEffects": false,
"exports": {
".": {
Expand All @@ -24,7 +29,8 @@
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
Expand All @@ -50,6 +56,9 @@
"typecheck": "tsc"
},
"release-it": {
"plugins": {
"./src/index.js": {}
},
"git": {
"commitMessage": "chore: release v${version}"
},
Expand All @@ -61,13 +70,21 @@
]
}
},
"peerDependencies": {
"release-it": "^17.0.0"
},
"devDependencies": {
"@types/node": "^20.11.17",
"bunchee": "^4.4.6",
"eslint": "^8.56.0",
"eslint-config-hyoban": "^0.1.3",
"release-it": "^17.0.5",
"sinon": "^17.0.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"dependencies": {
"fast-glob": "^3.3.2"
}
}
Loading

0 comments on commit 7a82cce

Please sign in to comment.