Skip to content

Commit

Permalink
chore: version change
Browse files Browse the repository at this point in the history
  • Loading branch information
maneike committed Oct 29, 2024
1 parent 923ae32 commit 7ff7cdd
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 7 deletions.
7 changes: 7 additions & 0 deletions .changeset/clean-frogs-poke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@tonik/create-stapler-app': minor
'@tonik/create-stapler-app-cli': minor
'@tonik/create-stapler-app-core': minor
---

Configure create-stapler-app package
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"@tonik/create-stapler-app-cli": "0.2.0-alpha.1"
},
"changesets": [
"clean-frogs-poke",
"light-walls-obey",
"new-eggs-cheat",
"witty-months-give"
Expand Down
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tonik/create-stapler-app

## 0.2.0-alpha.3

### Minor Changes

- Configure create-stapler-app package

## 0.2.0-alpha.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonik/create-stapler-app-cli",
"version": "0.2.0-alpha.2",
"version": "0.2.0-alpha.3",
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
Expand All @@ -11,17 +11,17 @@
"tag": "alpha"
},
"scripts": {
"build": "tsup index.ts --out-dir dist --format esm --bundle --noExternal:@create-stapler-app/core --dts",
"build": "tsup index.ts --out-dir dist --format esm --bundle --dts",
"dev": "tsc -w"
},
"dependencies": {
"@tonik/create-stapler-app-core": "workspace:*",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"gradient-string": "^3.0.0",
"inquirer": "^10.2.2"
},
"devDependencies": {
"@tonik/create-stapler-app-core": "workspace:*",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.5.4",
"tsup": "^8.2.4",
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tonik/create-stapler-app-core

## 0.2.0-alpha.3

### Minor Changes

- Configure create-stapler-app package

## 0.2.0-alpha.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonik/create-stapler-app-core",
"version": "0.2.0-alpha.2",
"version": "0.2.0-alpha.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": true,
Expand Down
6 changes: 6 additions & 0 deletions packages/create-stapler-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tonik/create-stapler-app

## 0.1.0-alpha.5

### Minor Changes

- Configure create-stapler-app package

## 0.1.0-alpha.4

### Minor Changes
Expand Down
10 changes: 7 additions & 3 deletions packages/create-stapler-app/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"name": "@tonik/create-stapler-app",
"version": "0.1.0-alpha.4",
"main": "index.ts",
"version": "0.1.0-alpha.5",
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"create-stapler-app": "cli/index.mjs"
"create-stapler-app": "./dist/index.mjs"
},
"scripts": {
"build": "tsup index.ts --out-dir dist --format esm --bundle --dts"
},
"devDependencies": {
"@tonik/create-stapler-app-core": "workspace:*",
Expand Down
11 changes: 11 additions & 0 deletions packages/create-stapler-app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"compilerOptions": {
"target": "ES2018",
"module": "CommonJS",
"strict": true,
"esModuleInterop": true,
"outDir": "./dist",
"rootDir": ".",
"composite": true
}
}

0 comments on commit 7ff7cdd

Please sign in to comment.