Skip to content

Commit aa9a283

Browse files
authored
release: 1.0.0-alpha.8 (#80)
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
1 parent e899dd5 commit aa9a283

File tree

3 files changed

+41
-9
lines changed

3 files changed

+41
-9
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
## [1.0.0-alpha.8](https://github.com/flex-development/mlly/compare/1.0.0-alpha.7...1.0.0-alpha.8) (2023-01-29)
2+
3+
4+
### :package: Build
5+
6+
* **deps-dev:** bump eslint from 8.32.0 to 8.33.0 ([9464965](https://github.com/flex-development/mlly/commit/9464965223415264301b2370e56f103f7202399a)), closes [#79](https://github.com/flex-development/mlly/issues/79)
7+
* **deps-dev:** Bump eslint-plugin-jsdoc from 39.6.9 to 39.7.4 ([#76](https://github.com/flex-development/mlly/issues/76)) ([fd89590](https://github.com/flex-development/mlly/commit/fd89590a90d2d133a84efbeb8153e80aee0f44ce))
8+
* **deps-dev:** cleanup changelog deps ([e899dd5](https://github.com/flex-development/mlly/commit/e899dd5ff58dbc7ec19749d1ad48cec5bb4a5ac8))
9+
* **deps:** bump @flex-development/is-builtin from 1.0.1 to 2.0.0 ([c39f63c](https://github.com/flex-development/mlly/commit/c39f63cb529a3eae091dded1a5f73c9277904fbd))
10+
* **nvm:** bump node from 16 to 19 ([4442dbb](https://github.com/flex-development/mlly/commit/4442dbb65e8161d608877a2c5c9346a17036c308))
11+
* **ts:** update file exclusion list ([f0a512f](https://github.com/flex-development/mlly/commit/f0a512f591994562cafa8cbebd550930352974dc))
12+
13+
14+
### :robot: Continuous Integration
15+
16+
* **deps:** Bump actions/github-script from 6.3.3 to 6.4.0 ([#77](https://github.com/flex-development/mlly/issues/77)) ([9873dc9](https://github.com/flex-development/mlly/commit/9873dc992caecc55f325191be461041fba8fd199))
17+
* **workflows:** [`ci`] refactor `metadata` job conditional ([c909436](https://github.com/flex-development/mlly/commit/c90943621eb8f13d81b79f0b3acb78a997b89a8c))
18+
19+
20+
### :house_with_garden: Housekeeping
21+
22+
* **github:** add commit scope `loader` ([8b57984](https://github.com/flex-development/mlly/commit/8b57984ea60d4f66fbbd65d4c069ddb9e3620c46))
23+
* **github:** add commit scope `nvm` ([905e7d1](https://github.com/flex-development/mlly/commit/905e7d1a093b017f3364e7f832989c0333c674bf))
24+
* **github:** add commit scope `spelling` ([7a111d0](https://github.com/flex-development/mlly/commit/7a111d01ed1770f49cb0610e3d5ef05f172fe359))
25+
* **spelling:** add "infile" to dictionary ([3ade2df](https://github.com/flex-development/mlly/commit/3ade2df3c3226eb8f69c9d20766f0a743f0b1e20))
26+
* **tests:** [mocks] remove `@flex-development/pathe` ([ccd9bbe](https://github.com/flex-development/mlly/commit/ccd9bbe2ebf8f3f5b62f88ae3171ceb4c3d68888))
27+
* **vscode:** add todo tree settings to `settings.json` ([41a9097](https://github.com/flex-development/mlly/commit/41a9097a3166a6211fd3407c08d050d6d8c95827))
28+
* **vscode:** remove stale `volar` settings ([6998a8c](https://github.com/flex-development/mlly/commit/6998a8c77f755ebd43f47ce700d31e22961780e1))
29+
* **yarn:** disable transparent workspaces ([8e519fd](https://github.com/flex-development/mlly/commit/8e519fd40b11b52b6a19fdd742e405ce10245c8b))
30+
131
## [1.0.0-alpha.7](https://github.com/flex-development/mlly/compare/1.0.0-alpha.6...1.0.0-alpha.7) (2023-01-27)
232

333

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/mlly",
33
"description": "ECMAScript module utilities",
4-
"version": "1.0.0-alpha.7",
4+
"version": "1.0.0-alpha.8",
55
"keywords": [
66
"ecmascript",
77
"esm",

scripts/release.sh

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,20 @@
55
# 1. run typecheck
66
# 2. run tests
77
# 3. pack project
8-
# 4. build docs
9-
# 5. get new package version
10-
# 6. get release branch name
11-
# 7. switch to release branch
12-
# 8. stage changes
13-
# 9. commit changes
14-
# 10. push release branch to origin
15-
# 11. cleanup
8+
# 4. run check:types:build
9+
# 5. build docs
10+
# 6. get new package version
11+
# 7. get release branch name
12+
# 8. switch to release branch
13+
# 9. stage changes
14+
# 10. commit changes
15+
# 11. push release branch to origin
16+
# 12. cleanup
1617

1718
yarn typecheck
1819
yarn test:cov
1920
yarn pack -o %s-%v.tgz
21+
yarn check:types:build
2022
yarn docs:build
2123
VERSION=$(jq .version package.json -r)
2224
RELEASE_BRANCH=release/$VERSION

0 commit comments

Comments
 (0)