Skip to content

Commit 007e8a9

Browse files
authored
release: 1.0.1 (#2)
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
1 parent 3098a0c commit 007e8a9

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## [1.0.1](https://github.com/flex-development/is-builtin/compare/1.0.0...1.0.1) (2022-10-08)
2+
3+
4+
### :package: Build
5+
6+
* cleanup build target settings ([3098a0c](https://github.com/flex-development/is-builtin/commit/3098a0c9b942e333c5f7e60b60d60675cebd6bc2))
7+
* distribute source maps ([37d5864](https://github.com/flex-development/is-builtin/commit/37d58646e4fd4b5d78cc6d8c729a091f571431b1))
8+
9+
10+
### :bug: Fixes
11+
12+
* **ts:** `Cannot find module '@flex-development/is-builtin' or its corresponding type declarations` ([a5b4f9c](https://github.com/flex-development/is-builtin/commit/a5b4f9c0ca0c5b137a5d7b78fe72c06585ca5d64))
13+
114
## 1.0.0 (2022-10-08)
215

316

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@flex-development/is-builtin",
33
"description": "Ponyfill for module.isBuiltin",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"keywords": [
66
"builtin",
77
"module",

scripts/release.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,19 @@
33
# Local Release Workflow
44

55
# 1. run tests
6-
# 2. pack project
6+
# 2. build project
77
# 3. get new package version
88
# 4. get release branch name
99
# 5. switch to release branch
1010
# 6. stage changes
1111
# 7. commit changes
1212
# 8. push release branch to origin
13-
# 9. cleanup
1413

1514
yarn test:cov
16-
yarn pack -o %s-%v.tgz
15+
yarn build
1716
VERSION=$(jq .version package.json -r)
1817
RELEASE_BRANCH=release/$VERSION
1918
git switch -c $RELEASE_BRANCH
2019
git add .
2120
git commit -s -m "release: $(jq .tagPrefix package.json -r)$VERSION" --no-verify
2221
git push origin -u --no-verify $RELEASE_BRANCH
23-
yarn clean:pack

0 commit comments

Comments
 (0)