Skip to content

Commit 7fea6da

Browse files
authored
chore(release): bump package versions from v0.2.0 to v0.3.0 (minor) (#606)
## Release Information: `v0.3.0` New release of `lumirlumir/npm-bananass` has arrived! 🎉 This PR bumps the package versions from `v0.2.0` to `v0.3.0` (`minor`). See [Actions](https://github.com/lumirlumir/npm-bananass/actions/runs/16492674688) for more details. | Info | Value | | ----------- | -------------------------- | | Repository | `lumirlumir/npm-bananass` | | SEMVER | `minor` | | Pre ID | `canary` | | Short SHA | 69ed928 | | Old Version | `v0.2.0` | | New Version | `v0.3.0` | <!-- Release notes generated using configuration in .github/release.yml at main --> ## What's Changed ### ✨ Features * feat(bananass): add support for `brave` browser to cli commands by @lumirlumir in #589 ### 🐛 Bug Fixes * fix(eslint-config-bananass): support `mjs` and `cjs` extensions for `import/no-extraneous-dependencies` by @lumirlumir in #600 ### 🛠️ Builds * build(create-bananass): update build script to include TypeScript compilation by @lumirlumir in #590 ### 📝 Documentation * docs(*): remove `PULL_REQUEST_TEMPLATE.md` in favor of centralized template by @lumirlumir in #588 * docs(*): complete `project-structure.md` by @lumirlumir in #510 ### ♻️ Code Refactoring * refactor(bananass): reduce dependency by removing `c12` and migrating to `defu` by @lumirlumir in #593 * refactor(bananass): replace `import.meta.url` with `import.meta.dirname` for cleaner path resolution by @Copilot in #595 ### ⬆️ Dependency Updates * chore(deps-dev): bump @types/node from 24.0.10 to 24.0.12 by @dependabot[bot] in #572 * chore(deps): bump webpack from 5.99.9 to 5.100.0 by @dependabot[bot] in #574 * chore(deps): bump c12 from 3.0.4 to 3.1.0 by @dependabot[bot] in #577 * chore(deps-dev): bump eslint from 9.30.1 to 9.31.0 by @dependabot[bot] in #578 * chore(deps): bump webpack from 5.100.0 to 5.100.1 by @dependabot[bot] in #585 * chore(deps): bump open from 10.1.2 to 10.2.0 by @dependabot[bot] in #586 * chore(deps): bump webpack from 5.100.1 to 5.100.2 by @dependabot[bot] in #591 * chore(deps): bump the next group across 2 directories with 1 update by @dependabot[bot] in #594 * chore(deps-dev): bump editorconfig-checker from 6.0.1 to 6.1.0 by @dependabot[bot] in #596 * chore(deps): bump the next group across 2 directories with 1 update by @dependabot[bot] in #599 * chore(deps-dev): bump form-data from 4.0.1 to 4.0.4 in the npm_and_yarn group across 1 directory by @dependabot[bot] in #598 * chore(deps): bump jiti from 2.4.2 to 2.5.0 by @dependabot[bot] in #602 ## New Contributors * @Copilot made their first contribution in #595 **Full Changelog**: v0.2.0...v0.3.0
1 parent 69ed928 commit 7fea6da

File tree

23 files changed

+96
-96
lines changed

23 files changed

+96
-96
lines changed

examples/readline/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "examples-readline",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"scripts": {
66
"start": "node ."
77
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"private": true,
33
"name": "examples-solutions-bananass-cjs",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"scripts": {
66
"build": "bananass build",
77
"run": "bananass run",
88
"test": "bash ../../scripts/examples-solutions-bananass-test.sh"
99
},
1010
"devDependencies": {
11-
"bananass": "^0.2.0"
11+
"bananass": "^0.3.0"
1212
}
1313
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"private": true,
33
"name": "examples-solutions-bananass-cts",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"scripts": {
66
"build": "bananass build",
77
"run": "bananass run",
88
"test": "npx tsc --noEmit && bash ../../scripts/examples-solutions-bananass-test.sh"
99
},
1010
"devDependencies": {
11-
"bananass": "^0.2.0"
11+
"bananass": "^0.3.0"
1212
}
1313
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"private": true,
33
"name": "examples-solutions-bananass-mjs",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"type": "module",
66
"scripts": {
77
"build": "bananass build",
88
"run": "bananass run",
99
"test": "bash ../../scripts/examples-solutions-bananass-test.sh"
1010
},
1111
"devDependencies": {
12-
"bananass": "^0.2.0"
12+
"bananass": "^0.3.0"
1313
}
1414
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"private": true,
33
"name": "examples-solutions-bananass-mts",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"type": "module",
66
"scripts": {
77
"build": "bananass build",
88
"run": "bananass run",
99
"test": "npx tsc --noEmit && bash ../../scripts/examples-solutions-bananass-test.sh"
1010
},
1111
"devDependencies": {
12-
"bananass": "^0.2.0"
12+
"bananass": "^0.3.0"
1313
}
1414
}

examples/solutions-readline-cjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "examples-solutions-readline-cjs",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"scripts": {
66
"start:1000": "node src/1000",
77
"start:1001": "node src/1001",

examples/solutions-readline-mjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "examples-solutions-readline-mjs",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"type": "module",
66
"scripts": {
77
"start:1000": "node src/1000"

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "0.2.0"
3+
"version": "0.3.0"
44
}

package-lock.json

Lines changed: 48 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)