Skip to content

Commit d413a32

Browse files
committed
feat: init workspace
0 parents  commit d413a32

File tree

4 files changed

+63
-0
lines changed

4 files changed

+63
-0
lines changed

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Logs
2+
logs
3+
*.log
4+
pnpm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
*.pid.lock
11+
12+
# Directory for instrumented libs generated by jscoverage/JSCover
13+
lib-cov
14+
15+
# Coverage directory used by tools like istanbul
16+
coverage
17+
18+
# nyc test coverage
19+
.nyc_output
20+
21+
22+
# Compiled binary addons (http://nodejs.org/api/addons.html)
23+
build/Release
24+
25+
# Dependency directories
26+
node_modules/
27+
28+
29+
# Optional eslint cache
30+
.eslintcache
31+
32+
# Optional REPL history
33+
.node_repl_history
34+
35+
# dotenv environment variables file
36+
.env
37+
38+
# General
39+
.DS_Store
40+
.LSOverride
41+
.idea
42+
43+
.vscode/*
44+
!.vscode/launch.json
45+
!.vscode/*.code-snippets
46+

package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "kala",
3+
"version": "1.0.0",
4+
"private": true,
5+
"type": "module",
6+
"description": "People will come for miles to see you burn",
7+
"scripts": {
8+
},
9+
"keywords": [],
10+
"license": "MIT"
11+
}

pnpm-workspace.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
packages:
2+
- 'apps/*'
3+
- 'packages/*'

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Kala
2+
3+
A monorepo showcasing how to perform semantic releases using [release-it](https://github.com/release-it/release-it).

0 commit comments

Comments
 (0)