@slickgrid-universal/text-export 1.3.0 → 1.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +8 -5
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2
2
  [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
3
- [![lerna--lite](https://img.shields.io/badge/maintained%20with-lerna--lite-d428ff)](https://github.com/ghiscoding/lerna-lite)
3
+ [![lerna--lite](https://img.shields.io/badge/maintained%20with-lerna--lite-e137ff)](https://github.com/ghiscoding/lerna-lite)
4
4
  [![npm](https://img.shields.io/npm/v/@slickgrid-universal/text-export.svg?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/text-export)
5
5
  [![npm](https://img.shields.io/npm/dy/@slickgrid-universal/text-export?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/text-export)
6
6
 
@@ -9,10 +9,10 @@
9
9
  [![jest](https://jestjs.io/img/jest-badge.svg)](https://github.com/facebook/jest)
10
10
  [![codecov](https://codecov.io/gh/ghiscoding/slickgrid-universal/branch/master/graph/badge.svg)](https://codecov.io/gh/ghiscoding/slickgrid-universal)
11
11
 
12
- ## Text Export Service (text file)
12
+ ## Text Export Service (text file)
13
13
  #### @slickgrid-universal/text-export
14
14
 
15
- Simple Export to File Service that allows to export as CSV or Text (`.csv` or `.txt`), user can also choose which data separator to use for the export (comma, colon, semicolon, ...).
15
+ Simple Export to File Service that allows to export as CSV or Text (`.csv` or `.txt`), user can also choose which data separator to use for the export (comma, colon, semicolon, ...).
16
16
 
17
17
  There are a couple of reasons to use this package (it could be used instead of the `excel-export`)
18
18
  - if you want to export to a text file with any type of separator (tab, colon, semicolon, comma)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slickgrid-universal/text-export",
3
- "version": "1.3.0",
3
+ "version": "1.3.4",
4
4
  "description": "Export to Text File (csv/txt) Service.",
5
5
  "main": "dist/commonjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -15,8 +15,10 @@
15
15
  "scripts": {
16
16
  "build": "pnpm run bundle:commonjs",
17
17
  "build:watch": "tsc --incremental --watch",
18
+ "clean": "rimraf --maxBusyTries=10 packages/*/dist dist",
18
19
  "dev": "pnpm run bundle:commonjs",
19
20
  "dev:watch": "tsc --incremental --watch",
21
+ "prebundle": "pnpm run clean",
20
22
  "bundle": "run-p bundle:commonjs bundle:esm --npm-path npm",
21
23
  "bundle:commonjs": "tsc --project tsconfig.bundle.json --outDir dist/commonjs --module commonjs",
22
24
  "bundle:esm": "tsc --project tsconfig.bundle.json --outDir dist/esm --module esnext --target es2018",
@@ -40,18 +42,19 @@
40
42
  "not dead"
41
43
  ],
42
44
  "dependencies": {
43
- "@slickgrid-universal/common": "1.3.0",
44
- "@slickgrid-universal/utils": "1.3.0",
45
+ "@slickgrid-universal/common": "1.3.4",
46
+ "@slickgrid-universal/utils": "1.3.4",
45
47
  "text-encoding-utf-8": "^1.0.2"
46
48
  },
47
49
  "devDependencies": {
48
50
  "@types/text-encoding-utf-8": "^1.0.2",
49
51
  "cross-env": "^7.0.3",
50
- "npm-run-all2": "^6.0.1"
52
+ "npm-run-all2": "^6.0.1",
53
+ "rimraf": "^3.0.2"
51
54
  },
52
55
  "funding": {
53
56
  "type": "ko_fi",
54
57
  "url": "https://ko-fi.com/ghiscoding"
55
58
  },
56
- "gitHead": "e36e97bc03591af0e15c50397aadf34530e58156"
59
+ "gitHead": "90a2d3184c9dca985896d868d28f380166303f13"
57
60
  }