Skip to content

Commit

Permalink
refactor: rename to @joshunrau/semantic-release
Browse files Browse the repository at this point in the history
  • Loading branch information
joshunrau committed Mar 30, 2024
1 parent 6f302a6 commit 2868503
Show file tree
Hide file tree
Showing 4 changed files with 176 additions and 25 deletions.
8 changes: 0 additions & 8 deletions CHANGELOG.md

This file was deleted.

5 changes: 5 additions & 0 deletions bin/release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh

# This is necessary because when installing with pnpm, the semantic-release package is nested in
# node_modules, and I would rather avoid having semantic-release as a peer dependency.
pnpm exec semantic-release
26 changes: 12 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,40 @@
{
"name": "@joshunrau/semantic-release-config",
"name": "@joshunrau/semantic-release",
"type": "module",
"version": "0.0.2",
"version": "0.0.1",
"packageManager": "pnpm@8.15.3",
"description": "Semantic release configuration for my personal projects",
"description": "Semantic release configuration and workflow for my personal projects",
"author": "Joshua Unrau",
"license": "MIT",
"homepage": "https://github.com/joshunrau/semantic-release-config/#readme",
"homepage": "https://github.com/joshunrau/semantic-release/#readme",
"repository": {
"type": "git",
"url": "https://github.com/joshunrau/semantic-release-config.git"
"url": "https://github.com/joshunrau/semantic-release.git"
},
"bugs": {
"url": "https://github.com/joshunrau/semantic-release-config/issues"
"url": "https://github.com/joshunrau/semantic-release/issues"
},
"keywords": [
"semantic-release",
"semantic-release-config"
"semantic-release"
],
"main": "src/index.js",
"types": "src/index.d.ts",
"bin": "bin/release.sh",
"files": [
"bin",
"src"
],
"scripts": {
"prepare": "husky"
},
"peerDependencies": {
"semantic-release": "23.x"
},
"dependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.2",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0"
"@semantic-release/release-notes-generator": "^13.0.0",
"semantic-release": "^23.0.6"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
Expand All @@ -44,8 +43,7 @@
"@joshunrau/prettier-config": "^0.0.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"semantic-release": "^23.0.6"
"prettier": "^3.2.5"
},
"commitlint": {
"extends": [
Expand Down
Loading

0 comments on commit 2868503

Please sign in to comment.