@slickgrid-universal/binding 1.2.6 → 1.3.0
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.
- package/README.md +1 -1
- package/package.json +10 -17
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[](https://opensource.org/licenses/MIT)
|
|
2
2
|
[](http://www.typescriptlang.org/)
|
|
3
|
-
[](https://github.com/ghiscoding/lerna-lite)
|
|
4
4
|
[](https://www.npmjs.com/package/@slickgrid-universal/binding)
|
|
5
5
|
[](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
|
+
"version": "1.3.0",
|
|
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,13 @@
|
|
|
13
13
|
"/dist"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"dev": "
|
|
20
|
-
"dev:watch": "run-p build:watch --npm-path npm",
|
|
16
|
+
"build": "pnpm run bundle:commonjs",
|
|
17
|
+
"build:watch": "tsc --incremental --watch",
|
|
18
|
+
"dev": "pnpm run bundle:commonjs",
|
|
19
|
+
"dev:watch": "tsc --incremental --watch",
|
|
21
20
|
"bundle": "run-p bundle:commonjs bundle:esm --npm-path npm",
|
|
22
21
|
"bundle:commonjs": "tsc --project tsconfig.bundle.json --outDir dist/commonjs --module commonjs",
|
|
23
|
-
"bundle:esm": "
|
|
24
|
-
"prebundle": "npm-run-all delete:dist --npm-path npm",
|
|
25
|
-
"delete:dist": "cross-env rimraf --maxBusyTries=10 dist",
|
|
22
|
+
"bundle:esm": "tsc --project tsconfig.bundle.json --outDir dist/esm --module esnext --target es2018",
|
|
26
23
|
"package:add-browser-prop": "cross-env node ../change-package-browser.js --add-browser=true --folder-name=binding",
|
|
27
24
|
"package:remove-browser-prop": "cross-env node ../change-package-browser.js --remove-browser=true --folder-name=binding"
|
|
28
25
|
},
|
|
@@ -37,22 +34,18 @@
|
|
|
37
34
|
"bugs": {
|
|
38
35
|
"url": "https://github.com/ghiscoding/slickgrid-universal/issues"
|
|
39
36
|
},
|
|
40
|
-
"engines": {
|
|
41
|
-
"node": ">=14.17.0",
|
|
42
|
-
"npm": ">=6.14.8"
|
|
43
|
-
},
|
|
44
37
|
"browserslist": [
|
|
45
38
|
"last 2 version",
|
|
46
39
|
"> 1%",
|
|
47
40
|
"not dead"
|
|
48
41
|
],
|
|
49
42
|
"dependencies": {
|
|
50
|
-
"dompurify": "^2.3.
|
|
43
|
+
"dompurify": "^2.3.8"
|
|
51
44
|
},
|
|
52
45
|
"devDependencies": {
|
|
46
|
+
"@types/dompurify": "^2.3.3",
|
|
53
47
|
"cross-env": "^7.0.3",
|
|
54
|
-
"npm-run-
|
|
55
|
-
"rimraf": "^3.0.2"
|
|
48
|
+
"npm-run-all2": "^6.0.1"
|
|
56
49
|
},
|
|
57
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "e36e97bc03591af0e15c50397aadf34530e58156"
|
|
58
51
|
}
|