@ember/app-blueprint 6.12.0-beta.0 → 6.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +27 -12
- package/.github/workflows/plan-alpha-release.yml +15 -50
- package/.github/workflows/plan-beta-release.yml +16 -51
- package/.github/workflows/plan-stable-release.yml +16 -51
- package/.github/workflows/publish.yml +52 -0
- package/.prettierrc.mjs +3 -0
- package/.release-plan.json +4 -4
- package/CHANGELOG.md +65 -22
- package/RELEASE.md +29 -1
- package/conditional-files/_js_babel.config.mjs +3 -2
- package/conditional-files/_js_eslint.config.mjs +8 -5
- package/conditional-files/_ts_babel.config.mjs +3 -2
- package/conditional-files/_ts_eslint.config.mjs +15 -6
- package/eslint.config.mjs +2 -2
- package/files/.prettierrc.mjs +2 -27
- package/files/app/app.ts +2 -2
- package/files/app/config/environment.js +27 -0
- package/files/app/config/environment.ts +5 -5
- package/files/{ember-cli-build.js → ember-cli-build.mjs} +8 -8
- package/files/gitignore +0 -7
- package/files/package.json +25 -25
- package/files/tests/test-helper.ts +2 -2
- package/index.js +10 -1
- package/package.json +3 -10
- package/.github/workflows/publish-alpha.yml +0 -42
- package/.github/workflows/publish-beta.yml +0 -42
- package/.github/workflows/publish-stable.yml +0 -42
- package/.prettierrc.cjs +0 -13
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
# For every push to the primary branch with .release-plan.json modified,
|
|
2
|
-
# runs release-plan.
|
|
3
|
-
|
|
4
|
-
name: Publish Stable
|
|
5
|
-
|
|
6
|
-
on:
|
|
7
|
-
workflow_dispatch:
|
|
8
|
-
push:
|
|
9
|
-
branches:
|
|
10
|
-
- release
|
|
11
|
-
paths:
|
|
12
|
-
- '.release-plan.json'
|
|
13
|
-
|
|
14
|
-
concurrency:
|
|
15
|
-
group: publish-${{ github.head_ref || github.ref }}
|
|
16
|
-
cancel-in-progress: true
|
|
17
|
-
|
|
18
|
-
jobs:
|
|
19
|
-
publish:
|
|
20
|
-
name: "NPM Publish"
|
|
21
|
-
runs-on: ubuntu-latest
|
|
22
|
-
permissions:
|
|
23
|
-
contents: write
|
|
24
|
-
pull-requests: write
|
|
25
|
-
id-token: write
|
|
26
|
-
attestations: write
|
|
27
|
-
|
|
28
|
-
steps:
|
|
29
|
-
- uses: actions/checkout@v4
|
|
30
|
-
- uses: pnpm/action-setup@v4
|
|
31
|
-
- uses: actions/setup-node@v4
|
|
32
|
-
with:
|
|
33
|
-
node-version: 18
|
|
34
|
-
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
|
|
35
|
-
registry-url: 'https://registry.npmjs.org'
|
|
36
|
-
cache: pnpm
|
|
37
|
-
- run: pnpm install --frozen-lockfile
|
|
38
|
-
- name: Publish to NPM
|
|
39
|
-
run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish --publish-branch=release
|
|
40
|
-
env:
|
|
41
|
-
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
|
|
42
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|