Skip to content

Commit

Permalink
v6.15.0 - boundation, changelog, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Nov 23, 2023
1 parent f69d999 commit 0de6c15
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 27 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# History

## v6.15.0 2023 November 23

- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)

## v6.14.2 2023 November 23

- Fix `version-range` to `^4.5.1` which resolves the v6.14.1 patch
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "editions",
"version": "6.14.2",
"version": "6.15.0",
"description": "Publish multiple editions for your JavaScript packages consistently and easily (e.g. source edition, esnext edition, es2015 edition)",
"homepage": "https://github.com/bevry/editions",
"license": "Artistic-2.0",
Expand Down Expand Up @@ -101,7 +101,7 @@
"require"
],
"engines": {
"node": true,
"node": "4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"browsers": false
}
},
Expand All @@ -116,7 +116,7 @@
"import"
],
"engines": {
"node": true,
"node": "12 || 14 || 16 || 18 || 20 || 21",
"browsers": false
}
},
Expand All @@ -143,7 +143,7 @@
}
},
"dependencies": {
"version-range": "^4.5.1"
"version-range": "^4.6.0"
},
"devDependencies": {
"@bevry/update-contributors": "^1.23.0",
Expand All @@ -163,23 +163,6 @@
"typescript": "5.2.2",
"valid-directory": "^4.5.0"
},
"eslintConfig": {
"extends": [
"bevry"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"boundation": {
"browser": false,
"compiler": "typescript",
"targets": [
"ES5"
]
},
"scripts": {
"our:clean": "rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
"our:compile": "npm run our:compile:edition-es5 && npm run our:compile:edition-es5-esm && npm run our:compile:edition-types",
Expand All @@ -206,5 +189,22 @@
"our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source",
"our:verify:prettier": "prettier --write .",
"test": "node ./edition-es5/test.js"
},
"eslintConfig": {
"extends": [
"bevry"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"boundation": {
"browser": false,
"compiler": "typescript",
"targets": [
"ES5"
]
}
}

0 comments on commit 0de6c15

Please sign in to comment.