diff --git a/.changeset/four-boats-confess.md b/.changeset/four-boats-confess.md new file mode 100644 index 0000000..afc32d8 --- /dev/null +++ b/.changeset/four-boats-confess.md @@ -0,0 +1,6 @@ +--- +'@tonik/create-stapler-app': minor +'@tonik/create-stapler-app-core': minor +--- + +Copy templates to cli diff --git a/.changeset/pre.json b/.changeset/pre.json index a29e998..b3b4c59 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -11,6 +11,7 @@ "cuddly-cups-itch", "curly-ligers-cheat", "five-students-care", + "four-boats-confess", "honest-parents-tickle", "lazy-steaks-jog", "light-walls-obey", diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 535eb60..ab82454 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,6 +30,10 @@ jobs: run: | pnpm build --no-cache + - name: Copy Templates from core + run: | + cp -r packages/core/templates . + - name: Create Release Pull Request or Publish to npm id: changesets uses: changesets/action@v1 diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 1a496f2..4ce5877 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,11 @@ # @tonik/create-stapler-app +## 0.1.0-alpha.19 + +### Minor Changes + +- Copy templates to cli + ## 0.1.0-alpha.18 ### Minor Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 82df36e..17104c5 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,8 +1,7 @@ { "name": "@tonik/create-stapler-app", - "version": "0.1.0-alpha.18", + "version": "0.1.0-alpha.19", "main": "./dist/index.mjs", - "types": "./dist/index.d.ts", "bin": { "create-stapler-app": "./dist/index.mjs" }, @@ -12,7 +11,7 @@ }, "files": [ "dist", - "core/templates" + "templates" ], "scripts": { "build": "tsup index.ts --out-dir ./dist --format esm", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index ce0e0ea..c421691 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @tonik/create-stapler-app-core +## 0.2.0-alpha.3 + +### Minor Changes + +- Copy templates to cli + ## 0.2.0-alpha.2 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index a03a128..6fdb941 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@tonik/create-stapler-app-core", - "version": "0.2.0-alpha.2", + "version": "0.2.0-alpha.3", "private": true, "main": "./dist/index.js", "types": "./dist/index.d.ts",