Skip to content

Releases: papb/json-excel

v2.0.2

31 May 03:58
Compare
Choose a tag to compare

Changes

  • Improve readme

Commits

v2.0.1...v2.0.2

v2.0.1

29 May 06:31
Compare
Choose a tag to compare

Changes

  • Improved readme

Commits

  • Improve readme and prepare for 2.0.1 0c784ab

v2.0.0...v2.0.1

v2.0.0

29 May 06:14
Compare
Choose a tag to compare

Breaking Changes

  • Changed the way you import the package and the method name:

    • JavaScript:

      - const jsonToExcel = require('@papb/json-excel');
      + const { exportJsonToExcel } = require('@papb/json-excel');
    • TypeScript:

      - import jsonToExcel = require('@papb/json-excel');
      + import { exportJsonToExcel } from '@papb/json-excel';
  • Changed the order of arguments in the export function (the path is the first argument now):

    - await jsonToExcel(sheets, pathToFile, options);
    + await exportJsonToExcel(pathToFile, sheets, options);

Features

Commits

  • Update package.json release script 55aaa22
  • Prepare for 2.0.0 de99331
  • Update dependencies & fix linting 40b92f8
  • Fix files in package.json 7c1070a
  • Add some keywords 1f6d6b8
  • Refactor and add support for browsers 09ba048
  • Fix CI badge in readme 454354f

v1.2.1...v2.0.0

v1.2.1

02 Aug 16:58
Compare
Choose a tag to compare

Changes

  • Updated dependencies

Internal

  • Move from Travis CI to Github Actions

Commits

  • Update package.json 667b247
  • Update deps & use Github Actions 54db434

v1.2.0...v1.2.1

v1.2.0

03 Jul 15:47
Compare
Choose a tag to compare

Features

Commits

v1.1.1...v1.2.0

v1.1.1

03 Jul 15:13
Compare
Choose a tag to compare

Fixes

  • Improve cell autofit calculation

Commits

  • Improve cell autofit calculation 8973874

v1.1.0...v1.1.1

v1.1.0

03 Jul 02:43
Compare
Choose a tag to compare

Features

  • Added normalizeLinefeeds and linefeedLimitChecking options

Commits

  • Add normalizeLinefeeds and linefeedLimitChecking options 1c89404
  • Fix typo in readme 743db4d
  • Enable strict option in tsconfig.json f4e372d
  • Fix autocomplete documentation 916516d

v1.0.0...v1.1.0

v1.0.0

28 Jun 20:24
Compare
Choose a tag to compare

Initial release