Skip to content

Commit 417ab19

Browse files
Ensure latest npm for publish (#2883)
1 parent 86f44fc commit 417ab19

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
with:
3232
node-version: 22
3333
registry-url: 'https://registry.npmjs.org'
34+
- run: npm install -g npm@latest # ensure that the globally installed npm is new enough to support OIDC
3435
- run: npm ci
3536
- name: Build library
3637
run: npm run build_lib

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "angular-shepherd",
33
"private": true,
4-
"workspaces": [
5-
"projects/shepherd"
6-
],
74
"repository": {
85
"type": "git",
96
"url": "git+ssh://[email protected]/shipshapecode/angular-shepherd.git"
107
},
8+
"workspaces": [
9+
"projects/shepherd"
10+
],
1111
"scripts": {
1212
"build": "ng build",
1313
"build_lib": "ng build shepherd && cp README.md projects/shepherd/dist/",

projects/shepherd/src/lib/shepherd.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export class ShepherdService {
152152
}
153153

154154
/**
155-
* Initializes the tour, creates a new Shepherd.Tour. sets options, and binds events
155+
* Initializes the tour, creates a new Shepherd.Tour. sets options, and binds events.
156156
*/
157157
private _initialize() {
158158
const tourObject = new Shepherd.Tour({

0 commit comments

Comments
 (0)