Skip to content

Commit

Permalink
perf: update to support postversion
Browse files Browse the repository at this point in the history
This commit adds assets to be merged back into the repo with a
successful release. There is a new postversion script that will run
prior to the release of an update to update the repo's API and all docs.

Changes to be committed:
modified:   template/package.json
  • Loading branch information
blackfalcon committed Feb 8, 2024
1 parent 6f08c3d commit 1bc071e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@
"./package.json",
"./CHANGELOG.md",
"./README.md",
"./docs/api.md"
"./docs/api.md",
"./demo/demo.md",
"./demo/apiExamples.md"
]
}
],
Expand Down Expand Up @@ -153,6 +155,7 @@
"sweep": "rm -rf ./demo/css ./dist | rm ./src/*.css ./src/*-css.js",
"test": "wtr --coverage",
"test:watch": "wtr --watch",
"types": "tsc"
"types": "tsc",
"postversion": "npm-run-all build:api build:docs"
}
}

0 comments on commit 1bc071e

Please sign in to comment.