mirta 0.2.5 → 0.2.8

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/dist/index.mjs +1 -0
  2. package/package.json +6 -9
package/dist/index.mjs CHANGED
@@ -159,6 +159,7 @@ function createControl(context, controlId, options) {
159
159
  };
160
160
  }
161
161
 
162
+ /* eslint-disable @typescript-eslint/no-unsafe-enum-comparison */
162
163
  const { assign } = Object;
163
164
  if ((process.env.NODE_ENV === 'test'))
164
165
  module.static = {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mirta",
3
3
  "description": "The powerful framework to write smart home automation scripts.",
4
- "version": "0.2.5",
4
+ "version": "0.2.8",
5
5
  "license": "Unlicense",
6
6
  "keywords": [
7
7
  "mirta",
@@ -36,15 +36,12 @@
36
36
  "url": "https://pay.cloudtips.ru/p/58512cca"
37
37
  },
38
38
  "dependencies": {
39
- "@mirta/basics": "0.2.5",
40
- "@mirta/globals": "0.2.5",
41
- "@mirta/polyfills": "0.2.5"
42
- },
43
- "publishConfig": {
44
- "access": "public"
39
+ "@mirta/globals": "0.2.8",
40
+ "@mirta/polyfills": "0.2.8",
41
+ "@mirta/basics": "0.2.8"
45
42
  },
46
43
  "scripts": {
47
- "clean": "rimraf dist build",
48
- "build": "pnpm clean && rollup -c ../../rollup.config.mjs"
44
+ "clean": "rimraf dist",
45
+ "build:mono": "pnpm clean && rollup -c ../../rollup.config.mjs"
49
46
  }
50
47
  }