Skip to content

Commit

Permalink
feat: init workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMurage committed Oct 24, 2024
0 parents commit d413a32
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Logs
logs
*.log
pnpm-debug.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output


# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/


# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# dotenv environment variables file
.env

# General
.DS_Store
.LSOverride
.idea

.vscode/*
!.vscode/launch.json
!.vscode/*.code-snippets

11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "kala",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "People will come for miles to see you burn",
"scripts": {
},
"keywords": [],
"license": "MIT"
}
3 changes: 3 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
packages:
- 'apps/*'
- 'packages/*'
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Kala

A monorepo showcasing how to perform semantic releases using [release-it](https://github.com/release-it/release-it).

0 comments on commit d413a32

Please sign in to comment.