Skip to content

Commit 7d448cb

Browse files
author
wikus
committed
fix: update babel build config
1 parent 13b5594 commit 7d448cb

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

Diff for: CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.7.0](https://github.com/calidy-com/dayjs-calendarsystems/compare/v1.4.0...v1.7.0) (2024-02-28)
6+
7+
8+
### Features
9+
10+
* add Amazigh calendar system ([2d9a8e9](https://github.com/calidy-com/dayjs-calendarsystems/commit/2d9a8e9b0c5c443040072080edfe748abfef5e9a))
11+
12+
13+
### Bug Fixes
14+
15+
* buildtime issues, add eslintrc ([13b5594](https://github.com/calidy-com/dayjs-calendarsystems/commit/13b5594c71674ebbd29d03a9af8ffd3ac02301b9))
16+
* typo in function brackets ([595d119](https://github.com/calidy-com/dayjs-calendarsystems/commit/595d1193c9cedeeaee39b9ae6c617dba6bcd338a))
17+
518
## [1.6.0](https://github.com/calidy-com/dayjs-calendarsystems/compare/v1.4.0...v1.6.0) (2024-02-28)
619

720

Diff for: babel.config.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@ module.exports = {
22
env: {
33
test: {
44
presets: [
5-
'@babel/preset-env'
5+
['@babel/preset-env', {
6+
targets: {
7+
node: 'current' // Transpile for the current version of Node.js
8+
}
9+
}]
610
]
711
},
812
build: {
913
presets: [
1014
[
1115
'@babel/preset-env',
1216
{
13-
modules: false,
17+
modules: false, // Preserve ES modules
1418
loose: true
1519
}
1620
]

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@calidy/dayjs-calendarsystems",
3-
"version": "1.6.0",
3+
"version": "1.7.0",
44
"description": "Calendar Systems Management for Day.js",
55
"main": "dayjs-calendarsystems.cjs.min.js",
66
"umd:main": "dayjs-calendarsystems.umd.min.js",

0 commit comments

Comments
 (0)