Skip to content

Commit 637cd50

Browse files
committed
chore(release): publish new version 3.0.0
1 parent 17c137c commit 637cd50

File tree

4 files changed

+77
-6
lines changed

4 files changed

+77
-6
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Change Log
2+
## Visit the [Excel-Builder-Vanilla](https://github.com/ghiscoding/excel-builder-vanilla) GitHub project or take a look at the [Live Demo](https://ghiscoding.github.io/excel-builder-vanilla)
3+
4+
All notable changes to this project will be documented in this file.
5+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
6+
7+
## 3.0.0 (2024-02-10)
8+
9+
### ⚠ BREAKING CHANGES
10+
11+
* migrate from `JSZip` to `fflate`
12+
* remove Lodash use native code & migrate to TypeScript
13+
* migrate to TypeScript, drop `Q` dependency & add demo
14+
15+
### Features
16+
17+
* add `downloadExcelFile()` method for easier browser download ([ec41114](https://github.com/ghiscoding/excel-builder-vanilla/commit/ec41114e080a9330d28820b31fc8887d89f1bfb6)) - by @ghiscoding
18+
* add Date type instead of only timestamp ([0aab2b4](https://github.com/ghiscoding/excel-builder-vanilla/commit/0aab2b4c175e49511e1f511f088c12aecbc262d5)) - by @ghiscoding
19+
* add Date type instead of only timestamp [refresh gh-pages] ([8277723](https://github.com/ghiscoding/excel-builder-vanilla/commit/82777235a237a8952875383d427d973712ada1da)) - by @ghiscoding
20+
* migrate from `JSZip` to `fflate` ([dab3928](https://github.com/ghiscoding/excel-builder-vanilla/commit/dab3928c88fe5624acbd76ceb742630a00111fd9)) - by @ghiscoding
21+
* migrate to TypeScript, drop `Q` dependency & add demo ([4a807b8](https://github.com/ghiscoding/excel-builder-vanilla/commit/4a807b8710edc4170c7d732eb3192e584c909805)) - by @ghiscoding
22+
* remove Lodash use native code & migrate to TypeScript ([97fce8a](https://github.com/ghiscoding/excel-builder-vanilla/commit/97fce8aaf31395170496fe3d39af127e942bf18e)) - by @ghiscoding
23+
24+
### Bug Fixes
25+
26+
* Allow spaces to be placed in SharedStrings file ([abf901e](https://github.com/ghiscoding/excel-builder-vanilla/commit/abf901eed1a7eca7baf63298bffa7008a7129c7a)) - by @ghiscoding
27+
28+
### Performance Improvements
29+
30+
* use fflate `zip` (sync) for web worker, instead of `zipAsync` ([518f457](https://github.com/ghiscoding/excel-builder-vanilla/commit/518f45767660bc8b048d4003bfb26189fc0a95d0)) - by @ghiscoding

lerna.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
3-
"version": "2.1.8",
3+
"version": "3.0.0",
44
"npmClient": "pnpm",
55
"loglevel": "verbose",
66
"command": {
77
"publish": {
88
"cleanupTempFiles": true,
9-
"removePackageFields": ["devDependencies", "scripts"]
9+
"removePackageFields": [
10+
"devDependencies",
11+
"scripts"
12+
]
1013
},
1114
"version": {
1215
"conventionalCommits": true,
@@ -18,5 +21,7 @@
1821
}
1922
},
2023
"changelogPreset": "conventional-changelog-conventionalcommits",
21-
"packages": ["packages/excel-builder-vanilla"]
24+
"packages": [
25+
"packages/excel-builder-vanilla"
26+
]
2227
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Change Log
2+
## Visit the [Excel-Builder-Vanilla](https://github.com/ghiscoding/excel-builder-vanilla) GitHub project or take a look at the [Live Demo](https://ghiscoding.github.io/excel-builder-vanilla)
3+
4+
All notable changes to this project will be documented in this file.
5+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
6+
7+
## 3.0.0 (2024-02-10)
8+
9+
### ⚠ BREAKING CHANGES
10+
11+
* migrate from `JSZip` to `fflate`
12+
* remove Lodash use native code & migrate to TypeScript
13+
* migrate to TypeScript, drop `Q` dependency & add demo
14+
15+
### Features
16+
17+
* add `downloadExcelFile()` method for easier browser download ([ec41114](https://github.com/ghiscoding/excel-builder-vanilla/commit/ec41114e080a9330d28820b31fc8887d89f1bfb6)) - by @ghiscoding
18+
* add Date type instead of only timestamp ([0aab2b4](https://github.com/ghiscoding/excel-builder-vanilla/commit/0aab2b4c175e49511e1f511f088c12aecbc262d5)) - by @ghiscoding
19+
* migrate from `JSZip` to `fflate` ([dab3928](https://github.com/ghiscoding/excel-builder-vanilla/commit/dab3928c88fe5624acbd76ceb742630a00111fd9)) - by @ghiscoding
20+
* migrate to TypeScript, drop `Q` dependency & add demo ([4a807b8](https://github.com/ghiscoding/excel-builder-vanilla/commit/4a807b8710edc4170c7d732eb3192e584c909805)) - by @ghiscoding
21+
* remove Lodash use native code & migrate to TypeScript ([97fce8a](https://github.com/ghiscoding/excel-builder-vanilla/commit/97fce8aaf31395170496fe3d39af127e942bf18e)) - by @ghiscoding
22+
23+
### Bug Fixes
24+
25+
* Allow spaces to be placed in SharedStrings file ([abf901e](https://github.com/ghiscoding/excel-builder-vanilla/commit/abf901eed1a7eca7baf63298bffa7008a7129c7a)) - by @ghiscoding
26+
27+
### Performance Improvements
28+
29+
* use fflate `zip` (sync) for web worker, instead of `zipAsync` ([518f457](https://github.com/ghiscoding/excel-builder-vanilla/commit/518f45767660bc8b048d4003bfb26189fc0a95d0)) - by @ghiscoding

packages/excel-builder-vanilla/package.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
{
22
"name": "excel-builder-vanilla",
3-
"version": "2.1.8",
3+
"version": "3.0.0",
44
"description": "An easy way of building Excel files with javascript",
5-
"keywords": ["excel", "javascript", "xlsx", "spreadsheet"],
5+
"keywords": [
6+
"excel",
7+
"javascript",
8+
"xlsx",
9+
"spreadsheet"
10+
],
611
"author": "Stephen Liberty",
712
"contributors": [
813
{
@@ -27,7 +32,9 @@
2732
"types": "index.d.ts",
2833
"typesVersions": {
2934
">=4.2": {
30-
"*": ["dist/*"]
35+
"*": [
36+
"dist/*"
37+
]
3138
}
3239
},
3340
"exports": {

0 commit comments

Comments
 (0)