@slickgrid-universal/binding 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 +1 -1
  2. package/package.json +7 -4
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/binding.svg?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/binding)
5
5
  [![npm](https://img.shields.io/npm/dy/@slickgrid-universal/binding?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/binding)
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slickgrid-universal/binding",
3
- "version": "1.3.0",
3
+ "version": "1.3.4",
4
4
  "description": "Simple Vanilla Implementation of a Binding Engine & Helper to add properties/events 2 way bindings",
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,12 +42,13 @@
40
42
  "not dead"
41
43
  ],
42
44
  "dependencies": {
43
- "dompurify": "^2.3.8"
45
+ "dompurify": "^2.3.10"
44
46
  },
45
47
  "devDependencies": {
46
48
  "@types/dompurify": "^2.3.3",
47
49
  "cross-env": "^7.0.3",
48
- "npm-run-all2": "^6.0.1"
50
+ "npm-run-all2": "^6.0.1",
51
+ "rimraf": "^3.0.2"
49
52
  },
50
- "gitHead": "e36e97bc03591af0e15c50397aadf34530e58156"
53
+ "gitHead": "90a2d3184c9dca985896d868d28f380166303f13"
51
54
  }