Skip to content

Commit

Permalink
release: 1.0.1 (#2)
Browse files Browse the repository at this point in the history
Signed-off-by: Lexus Drumgold <[email protected]>
  • Loading branch information
unicornware authored Oct 8, 2022
1 parent 3098a0c commit 007e8a9
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## [1.0.1](https://github.com/flex-development/is-builtin/compare/1.0.0...1.0.1) (2022-10-08)


### :package: Build

* cleanup build target settings ([3098a0c](https://github.com/flex-development/is-builtin/commit/3098a0c9b942e333c5f7e60b60d60675cebd6bc2))
* distribute source maps ([37d5864](https://github.com/flex-development/is-builtin/commit/37d58646e4fd4b5d78cc6d8c729a091f571431b1))


### :bug: Fixes

* **ts:** `Cannot find module '@flex-development/is-builtin' or its corresponding type declarations` ([a5b4f9c](https://github.com/flex-development/is-builtin/commit/a5b4f9c0ca0c5b137a5d7b78fe72c06585ca5d64))

## 1.0.0 (2022-10-08)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@flex-development/is-builtin",
"description": "Ponyfill for module.isBuiltin",
"version": "1.0.0",
"version": "1.0.1",
"keywords": [
"builtin",
"module",
Expand Down
6 changes: 2 additions & 4 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,19 @@
# Local Release Workflow

# 1. run tests
# 2. pack project
# 2. build project
# 3. get new package version
# 4. get release branch name
# 5. switch to release branch
# 6. stage changes
# 7. commit changes
# 8. push release branch to origin
# 9. cleanup

yarn test:cov
yarn pack -o %s-%v.tgz
yarn build
VERSION=$(jq .version package.json -r)
RELEASE_BRANCH=release/$VERSION
git switch -c $RELEASE_BRANCH
git add .
git commit -s -m "release: $(jq .tagPrefix package.json -r)$VERSION" --no-verify
git push origin -u --no-verify $RELEASE_BRANCH
yarn clean:pack

0 comments on commit 007e8a9

Please sign in to comment.