@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.
@@ -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 }}
package/.prettierrc.cjs DELETED
@@ -1,13 +0,0 @@
1
- 'use strict';
2
-
3
- module.exports = {
4
- singleQuote: true,
5
- overrides: [
6
- {
7
- files: ['*.js', '*.ts', '*.cjs', '.mjs', '.cts', '.mts', '.cts'],
8
- options: {
9
- singleQuote: true,
10
- },
11
- },
12
- ],
13
- };