Skip to content

Commit

Permalink
Merge branch 'main' of github.com:tonik/stapler
Browse files Browse the repository at this point in the history
  • Loading branch information
maneike committed Oct 29, 2024
2 parents 525b4f1 + 5cb5aca commit 3a24dba
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"new-eggs-cheat",
"old-radios-bake",
"rare-beans-divide",
"short-waves-flow",
"silent-rocks-design",
"warm-gorillas-yawn",
"witty-months-give"
Expand Down
5 changes: 5 additions & 0 deletions .changeset/short-waves-flow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@tonik/create-stapler-app': patch
---

Point to mjs bin file
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Build Packages
run: |
pnpm --filter @tonik/create-stapler-app build
pnpm build
- name: Create Release Pull Request or Publish to npm
id: changesets
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@tonik/create-stapler-app-cli",
"version": "0.1.0-alpha.0",
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"main": "../create-stapler-app/dist/cli/index.mjs",
"types": "../create-stapler-app/dist/cli/index.d.ts",
"scripts": {
"build": "tsup index.ts --out-dir ../create-stapler-app/dist/cli --format esm --dts",
"build": "tsup index.ts --out-dir ../create-stapler-app/dist/cli --format esm",
"dev": "tsc -w"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"main": "../create-stapler-app/dist/core/index.js",
"types": "../create-stapler-app/dist/core/index.d.ts",
"scripts": {
"build": "tsup index.ts --out-dir ../create-stapler-app/dist/core --format cjs --dts",
"build": "tsup index.ts --out-dir ../create-stapler-app/dist/core --format cjs",
"dev": "tsc -w"
},
"dependencies": {
Expand Down
4 changes: 4 additions & 0 deletions packages/create-stapler-app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- Remove cli from npm

### Patch Changes

- 9f05326: Point to mjs bin file

## 0.1.0-alpha.9

### Patch Changes
Expand Down

0 comments on commit 3a24dba

Please sign in to comment.