@slickgrid-universal/utils 1.3.0 → 1.3.2

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 +0 -3
  2. package/package.json +7 -3
package/README.md CHANGED
@@ -14,8 +14,5 @@
14
14
 
15
15
  A set of small common utils that can be installed separately and that do not have any dependencies.
16
16
 
17
- ### External Dependencies
18
- - [DOM Purify](https://github.com/cure53/DOMPurify) to sanitize HTML text
19
-
20
17
  ### Installation
21
18
  Follow the instruction provided in the main [README](https://github.com/ghiscoding/slickgrid-universal#installation)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slickgrid-universal/utils",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "Common set of small utilities",
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,8 +42,10 @@
40
42
  "not dead"
41
43
  ],
42
44
  "devDependencies": {
45
+ "@types/jquery": "^3.5.14",
43
46
  "cross-env": "^7.0.3",
44
- "npm-run-all2": "^6.0.1"
47
+ "npm-run-all2": "^6.0.1",
48
+ "rimraf": "^3.0.2"
45
49
  },
46
- "gitHead": "e36e97bc03591af0e15c50397aadf34530e58156"
50
+ "gitHead": "0973f2a6e17d40f39a2d93e4bfae4fd57d8f098b"
47
51
  }