Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
with:
node-version: 22
registry-url: 'https://registry.npmjs.org'
- run: npm install -g npm@latest # ensure that the globally installed npm is new enough to support OIDC
- run: npm ci
- name: Build library
run: npm run build_lib
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "angular-shepherd",
"private": true,
"workspaces": [
"projects/shepherd"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/shipshapecode/angular-shepherd.git"
},
"workspaces": [
"projects/shepherd"
],
"scripts": {
"build": "ng build",
"build_lib": "ng build shepherd && cp README.md projects/shepherd/dist/",
Expand Down
2 changes: 1 addition & 1 deletion projects/shepherd/src/lib/shepherd.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class ShepherdService {
}

/**
* Initializes the tour, creates a new Shepherd.Tour. sets options, and binds events
* Initializes the tour, creates a new Shepherd.Tour. sets options, and binds events.
*/
private _initialize() {
const tourObject = new Shepherd.Tour({
Expand Down
Loading