subscribable-things 2.0.5 → 2.0.6
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 +2 -2
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -111,10 +111,10 @@ for await (const isMatching of eachValueFrom(source$)) {
|
|
|
111
111
|
}
|
|
112
112
|
```
|
|
113
113
|
|
|
114
|
-
Also it's possible to output values directly to HTML via [
|
|
114
|
+
Also it's possible to output values directly to HTML via [hyperf](https://github.com/spectjs/hyperf).
|
|
115
115
|
|
|
116
116
|
```js
|
|
117
|
-
import
|
|
117
|
+
import h from 'hyperf';
|
|
118
118
|
import { mediaQueryMatch } from 'subscribable-things';
|
|
119
119
|
|
|
120
120
|
const element = h`<div>is matching: ${mediaQueryMatch('(max-width:600px)')}</div>`;
|
package/package.json
CHANGED
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@babel/core": "^7.16.7",
|
|
25
25
|
"@babel/plugin-external-helpers": "^7.16.7",
|
|
26
|
-
"@babel/plugin-transform-runtime": "^7.16.
|
|
27
|
-
"@babel/preset-env": "^7.16.
|
|
28
|
-
"@commitlint/cli": "^16.0.
|
|
26
|
+
"@babel/plugin-transform-runtime": "^7.16.8",
|
|
27
|
+
"@babel/preset-env": "^7.16.8",
|
|
28
|
+
"@commitlint/cli": "^16.0.2",
|
|
29
29
|
"@commitlint/config-angular": "^16.0.0",
|
|
30
30
|
"@rollup/plugin-babel": "^5.3.0",
|
|
31
31
|
"baconjs": "^3.0.17",
|
|
@@ -41,7 +41,8 @@
|
|
|
41
41
|
"grunt-contrib-clean": "^2.0.0",
|
|
42
42
|
"grunt-sh": "^0.2.0",
|
|
43
43
|
"husky": "^7.0.4",
|
|
44
|
-
"
|
|
44
|
+
"hyperf": "^1.1.2",
|
|
45
|
+
"karma": "^6.3.11",
|
|
45
46
|
"karma-browserstack-launcher": "^1.6.0",
|
|
46
47
|
"karma-chrome-launcher": "^3.1.0",
|
|
47
48
|
"karma-firefox-launcher": "^2.1.2",
|
|
@@ -52,21 +53,20 @@
|
|
|
52
53
|
"kefir": "^3.8.8",
|
|
53
54
|
"load-grunt-config": "^4.0.1",
|
|
54
55
|
"midi-test": "^1.1.9",
|
|
55
|
-
"mocha": "^9.1.
|
|
56
|
+
"mocha": "^9.1.4",
|
|
56
57
|
"prettier": "^2.5.1",
|
|
57
58
|
"pretty-quick": "^3.1.3",
|
|
58
|
-
"rollup": "^2.
|
|
59
|
-
"rxjs": "^7.5.
|
|
59
|
+
"rollup": "^2.64.0",
|
|
60
|
+
"rxjs": "^7.5.2",
|
|
60
61
|
"rxjs-for-await": "^1.0.0",
|
|
61
62
|
"sinon": "^11.1.2",
|
|
62
63
|
"sinon-chai": "^3.7.0",
|
|
63
|
-
"spect": "^23.1.1",
|
|
64
64
|
"ts-loader": "^9.2.6",
|
|
65
|
-
"tsconfig-holy-grail": "^11.1.
|
|
65
|
+
"tsconfig-holy-grail": "^11.1.23",
|
|
66
66
|
"tslint": "^6.1.3",
|
|
67
67
|
"tslint-config-holy-grail": "^53.2.26",
|
|
68
68
|
"typescript": "^4.5.4",
|
|
69
|
-
"webpack": "^5.
|
|
69
|
+
"webpack": "^5.66.0",
|
|
70
70
|
"xstream": "^11.14.0"
|
|
71
71
|
},
|
|
72
72
|
"files": [
|
|
@@ -95,5 +95,5 @@
|
|
|
95
95
|
"test": "grunt lint && grunt test"
|
|
96
96
|
},
|
|
97
97
|
"types": "build/es2019/module.d.ts",
|
|
98
|
-
"version": "2.0.
|
|
98
|
+
"version": "2.0.6"
|
|
99
99
|
}
|