From d413a32e51328e0c633c5d66bfe5b5b71acee9fa Mon Sep 17 00:00:00 2001 From: Murage <25152892+0xMurage@users.noreply.github.com> Date: Thu, 24 Oct 2024 04:27:23 +0300 Subject: [PATCH] feat: init workspace --- .gitignore | 46 +++++++++++++++++++++++++++++++++++++++++++++ package.json | 11 +++++++++++ pnpm-workspace.yaml | 3 +++ readme.md | 3 +++ 4 files changed, 63 insertions(+) create mode 100644 .gitignore create mode 100644 package.json create mode 100644 pnpm-workspace.yaml create mode 100644 readme.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a6e14d9 --- /dev/null +++ b/.gitignore @@ -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 + diff --git a/package.json b/package.json new file mode 100644 index 0000000..2446407 --- /dev/null +++ b/package.json @@ -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" +} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 0000000..c53e539 --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,3 @@ +packages: + - 'apps/*' + - 'packages/*' \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..bd1817e --- /dev/null +++ b/readme.md @@ -0,0 +1,3 @@ +# Kala + +A monorepo showcasing how to perform semantic releases using [release-it](https://github.com/release-it/release-it). \ No newline at end of file