Skip to content

Commit 68f1d0d

Browse files
authored
Merge pull request #220 from CrowdStrike/fix-publish
Try to fix publishing
2 parents 9ec6632 + 265ba09 commit 68f1d0d

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
with:
157157
repo-token: ${{ secrets.GITHUB_TOKEN }}
158158
- uses: ./.github/actions/pnpm
159-
- run: pnpm build
159+
- run: pnpm build:packages
160160
- name: Create Release Pull Request or Publish to npm
161161
id: changesets
162162
uses: changesets/action@v1
@@ -198,4 +198,4 @@ jobs:
198198
## Preview URLs
199199
Env: ${{ steps.publishStep.outputs.environment }}
200200
Docs: ${{ steps.publishStep.outputs.url }}
201-
# # api docs: ${{ steps.publishStep.outputs.url }}/api/modules.html
201+
# # api docs: ${{ steps.publishStep.outputs.url }}/api/modules.html

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"start:docs-app": "pnpm --filter './packages/*' build; pnpm --stream --parallel --filter docs-app... start",
1313
"start:test-app": "pnpm --filter './packages/*' build; pnpm --stream --parallel --filter test-app... start",
1414
"build": "pnpm turbo build",
15+
"build:packages": "pnpm turbo --filter='./packages/*' build",
1516
"test": "pnpm turbo --filter test-app test",
1617
"test:docs": "pnpm turbo --filter docs-app test",
1718
"lint": "pnpm turbo lint",

packages/changeset/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
"lint:js:fix": "eslint . --fix",
2323
"lint:types": "glint",
2424
"start": "rollup --config --watch",
25-
"test": "echo 'A v2 addon does not have tests, run tests in test-app'",
26-
"prepack": "rollup --config"
25+
"test": "echo 'A v2 addon does not have tests, run tests in test-app'"
2726
},
2827
"dependencies": {
2928
"@embroider/addon-shim": "^1.0.0"

packages/ember-headless-form/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
"lint:prettier": "prettier -c .",
2525
"lint:prettier:fix": "prettier -w .",
2626
"start": "rollup --config --watch",
27-
"test": "echo 'A v2 addon does not have tests, run tests in test-app'",
28-
"prepack": "rollup --config"
27+
"test": "echo 'A v2 addon does not have tests, run tests in test-app'"
2928
},
3029
"dependencies": {
3130
"@babel/runtime": "^7.20.7",

packages/yup/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
"lint:js:fix": "eslint . --fix",
2323
"lint:types": "glint",
2424
"start": "rollup --config --watch",
25-
"test": "echo 'A v2 addon does not have tests, run tests in test-app'",
26-
"prepack": "rollup --config"
25+
"test": "echo 'A v2 addon does not have tests, run tests in test-app'"
2726
},
2827
"dependencies": {
2928
"@embroider/addon-shim": "^1.0.0",

0 commit comments

Comments
 (0)