Skip to content

Commit

Permalink
feat: 🚀 added semantic-release
Browse files Browse the repository at this point in the history
  • Loading branch information
tomerh2001 committed Sep 30, 2023
1 parent 59642ea commit 5ccdd12
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 20 deletions.
3 changes: 3 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
branches:
- main
extends: "semantic-release-npm-github-publish"
20 changes: 0 additions & 20 deletions bitbucket-pipelines.yml

This file was deleted.

Binary file added bun.lockb
Binary file not shown.
13 changes: 13 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "git-crypt-pipe",
"module": "index.ts",
"type": "module",
"devDependencies": {
"bun-types": "latest",
"semantic-release": "^22.0.5",
"semantic-release-npm-github-publish": "^1.5.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}
22 changes: 22 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"types": [
"bun-types" // add Bun global
]
}
}

0 comments on commit 5ccdd12

Please sign in to comment.