Skip to content

Commit 1f0cb29

Browse files
TomStrepsiljlptom
andauthored
[26] Fix public/scoped package publishing (ASOS#27)
* update workflows * version * typo * update chromium linux snaps * versions for serve update * package.json repository field * update root package.lock * bugs & directories/doc fields * fix changelog --------- Co-authored-by: Tom Pereira <[email protected]>
1 parent 27e436a commit 1f0cb29

File tree

17 files changed

+97
-14
lines changed

17 files changed

+97
-14
lines changed

.github/actions/publish/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
TAG=$([ "$PRE_RELEASE" == "true" ] && echo "--tag=pre-release ")
2-
npm publish $TAG--workspace=$WORKSPACE 2> publish_stderr_digest.log
2+
npm publish --access public $TAG--workspace=$WORKSPACE 2> publish_stderr_digest.log

.github/workflows/release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,3 +219,5 @@ jobs:
219219
name: ${{ matrix.package.name }}
220220
version: ${{ steps.newVersion.outputs.version }}
221221
is-pre-release: ${{ env.IS_PRE_RELEASE }}
222+
env:
223+
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}

docs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ N.B. See changelogs for individual packages, where most change will occur:
1414

1515
This log covers the [monorepo](https://en.wikipedia.org/wiki/Monorepo).
1616

17+
## [0.10.3] - 2025-02-27
18+
19+
### Fixed
20+
21+
- GHA pipelines for publishing to public/scoped NPM repository
22+
1723
## [0.10.2] - 2024-12-26
1824

1925
### Fixed

examples/serve/docs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.3] - 2025-02-27
9+
10+
### Changed
11+
12+
- updated some linux playwright snapshots
13+
- no code changes, so this must be a change in linux chromium. Assets look identical to eye, so presumably need to relax the fuzziness.
14+
815
## [0.2.2] - 2024-12-17
916

1017
### Removed

examples/serve/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-toggle-point-serve-example",
3-
"version": "0.2.0",
3+
"version": "0.2.3",
44
"type": "module",
55
"private": true,
66
"scripts": {
-234 Bytes
Loading
-275 Bytes
Loading

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@asos/web-toggle-point",
3-
"version": "0.10.2",
3+
"version": "0.10.3",
44
"repository": "[email protected]:asos/web-toggle-point.git",
55
"homepage": "https://asos.github.io/web-toggle-point/",
66
"license": "MIT",

packages/features/docs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.2] - 2025-03-03
9+
10+
### Changed
11+
12+
- Added `package.json` [repository](https://docs.npmjs.com/cli/v11/configuring-npm/package-json#repository), [bugs](https://docs.npmjs.com/cli/v11/configuring-npm/package-json#bugs), and [`directories/doc`](https://docs.npmjs.com/cli/v11/configuring-npm/package-json#directories) fields, for clarity once on NPM
13+
814
## [0.3.1] - 2024-12-26
915

1016
### Fixed

0 commit comments

Comments
 (0)