@slickgrid-universal/binding 1.2.6 → 1.3.3

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 +12 -16
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-blueviolet)](https://github.com/ghiscoding/lerna-lite)
3
+ [![lerna--lite](https://img.shields.io/badge/maintained%20with-lerna--lite-d428ff)](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.2.6",
3
+ "version": "1.3.3",
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",
@@ -13,16 +13,15 @@
13
13
  "/dist"
14
14
  ],
15
15
  "scripts": {
16
- "build": "cross-env tsc --build",
17
- "postbuild": "npm-run-all bundle:commonjs --npm-path npm",
18
- "build:watch": "cross-env tsc --incremental --watch",
19
- "dev": "npm run build",
20
- "dev:watch": "run-p build:watch --npm-path npm",
16
+ "build": "pnpm run bundle:commonjs",
17
+ "build:watch": "tsc --incremental --watch",
18
+ "clean": "rimraf --maxBusyTries=10 packages/*/dist dist",
19
+ "dev": "pnpm run bundle:commonjs",
20
+ "dev:watch": "tsc --incremental --watch",
21
+ "prebundle": "pnpm run clean",
21
22
  "bundle": "run-p bundle:commonjs bundle:esm --npm-path npm",
22
23
  "bundle:commonjs": "tsc --project tsconfig.bundle.json --outDir dist/commonjs --module commonjs",
23
- "bundle:esm": "cross-env tsc --project tsconfig.bundle.json --outDir dist/esm --module esnext --target es2018",
24
- "prebundle": "npm-run-all delete:dist --npm-path npm",
25
- "delete:dist": "cross-env rimraf --maxBusyTries=10 dist",
24
+ "bundle:esm": "tsc --project tsconfig.bundle.json --outDir dist/esm --module esnext --target es2018",
26
25
  "package:add-browser-prop": "cross-env node ../change-package-browser.js --add-browser=true --folder-name=binding",
27
26
  "package:remove-browser-prop": "cross-env node ../change-package-browser.js --remove-browser=true --folder-name=binding"
28
27
  },
@@ -37,22 +36,19 @@
37
36
  "bugs": {
38
37
  "url": "https://github.com/ghiscoding/slickgrid-universal/issues"
39
38
  },
40
- "engines": {
41
- "node": ">=14.17.0",
42
- "npm": ">=6.14.8"
43
- },
44
39
  "browserslist": [
45
40
  "last 2 version",
46
41
  "> 1%",
47
42
  "not dead"
48
43
  ],
49
44
  "dependencies": {
50
- "dompurify": "^2.3.6"
45
+ "dompurify": "^2.3.8"
51
46
  },
52
47
  "devDependencies": {
48
+ "@types/dompurify": "^2.3.3",
53
49
  "cross-env": "^7.0.3",
54
- "npm-run-all": "^4.1.5",
50
+ "npm-run-all2": "^6.0.1",
55
51
  "rimraf": "^3.0.2"
56
52
  },
57
- "gitHead": "3a2e6ff120b3cd310e8c046d84d229fba4e9e4b6"
53
+ "gitHead": "e4706ae145bf7f979dff80618f902d186ccb9136"
58
54
  }