Skip to content

Commit

Permalink
fix: update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
shinokada committed Aug 22, 2023
1 parent b738810 commit 9d60d6a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ Below is an example of how you can integrate Svelte Lib Helpers subcommands into
"gen:compo-data": "svelte-lib-helpers compo-data",
"copy:package": "svelte-lib-helpers package",
"lib-helpers": "npm run gen:docs && npm run gen:compo-data && npm run build && npm run gen:exports && npm run copy:package",
"package:publish": "standard-version && git push --follow-tags origin main && npm run lib-helpers && npm publish",
// ...
"package:publish": "standard-version && git push --follow-tags origin main && npm run lib-helpers && npm publish"
}
```

Expand Down
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@
"add-exports": "./index.js exports",
"add-docs": "./index.js docs",
"add-package": "./index.js package",
"add-data": "./index.js compo-data"
"add-data": "./index.js compo-data",
"gen:exports": "svelte-lib-helpers exports",
"gen:docs": "svelte-lib-helpers docs",
"gen:compo-data": "svelte-lib-helpers compo-data",
"copy:package": "svelte-lib-helpers package",
"lib-helpers": "npm run gen:docs && npm run gen:compo-data && npm run build && npm run gen:exports && npm run copy:package",
"package:publish": "standard-version && git push --follow-tags origin main && npm run lib-helpers && npm publish"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 9d60d6a

Please sign in to comment.