Skip to content

Commit

Permalink
v5.0.2
Browse files Browse the repository at this point in the history
* Fixed tokenParser
* Restored to stable 4.6.2
  • Loading branch information
tonysamperi committed Jun 3, 2024
1 parent 935a1df commit 312fd76
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 5.0.2 (Luxon next 3.4.4)

* Fixed tokenParser

## 5.0.1 (Luxon next 3.4.4)

* Fixed build output (removed extra terser)

## 5.0.0 (Luxon next 3.4.4)

* Partially fixed package.json

## 4.6.2 (Luxon next 3.4.4)

* Fix tokenParser.ts
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,13 @@ Jetbrains is now supporting this library with an open-source license, which will

![jetbrains-logo](https://user-images.githubusercontent.com/5957244/150580991-863d6fba-1090-4924-b26c-be19c6310f24.svg)

---

Thanks to [fire332](https://github.com/fire332) for his contribution about package.json

## Development

Pleas, read the CONTRIBUTING.md you can find in the master branch.
Please, read the CONTRIBUTING.md you can find in the master branch.

[initial-author]: https://github.com/GillesDebunne
[original-luxon]: https://github.com/moment/luxon
Expand Down
18 changes: 13 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-luxon",
"version": "4.6.2",
"version": "5.0.2",
"license": "MIT",
"description": "Typescript version of the \"Immutable date wrapper\"",
"author": "Tony Samperi",
Expand All @@ -11,9 +11,16 @@
],
"repository": "https://github.com/tonysamperi/ts-luxon",
"homepage": "https://tonysamperi.github.io/ts-luxon/",
"main": "dist/ts-luxon.umd.js",
"module": "dist/ts-luxon.es6.js",
"typings": "dist/index.d.ts",
"main": "./dist/ts-luxon.umd.js",
"types": "./dist/index.d.ts",
"module": "./dist/ts-luxon.es6.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/ts-luxon.es6.mjs",
"default": "./dist/ts-luxon.umd.js"
}
},
"files": [
"dist/**",
"README.md"
Expand All @@ -31,7 +38,8 @@
"typedoc": "typedoc src/index.ts --excludePrivate --excludeProtected --out dist/api-docs ",
"benchmark": "ts-node benchmarks/index.ts",
"codecov": "codecov",
"check-doc-coverage": "grep '\"coverage\": \"100%\"' dist/docs/coverage.json"
"check-doc-coverage": "grep '\"coverage\": \"100%\"' dist/docs/coverage.json",
"publish:beta": "npm publish --tag beta"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
{ file: pkg.main, name: "tsLuxon", format: "umd", sourcemap: true },
{ file: pkg.main.replace(".js", ".min.js"), name: "tsLuxon", format: "umd", sourcemap: "inline", plugins: [terser()] },
{ file: pkg.module, format: "es", sourcemap: true },
{ file: pkg.module.replace(".js", ".min.js"), format: "es", sourcemap: "inline", plugins: [terser()] }
{ file: pkg.module.replace(".mjs", ".min.mjs"), format: "es", sourcemap: "inline", plugins: [terser()] }
],
external: [],
watch: {
Expand Down

0 comments on commit 312fd76

Please sign in to comment.