innetjs 2.4.3 → 2.4.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.
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  ;(function () {
4
- const env = {"__INNETJS__PACKAGE_VERSION":"2.4.3"};
4
+ const env = {"__INNETJS__PACKAGE_VERSION":"2.4.4"};
5
5
  if (typeof process === 'undefined') {
6
6
  globalThis.process = { env: env };
7
7
  } else if (process.env) {
@@ -1,5 +1,5 @@
1
1
  ;(function () {
2
- const env = {"__INNETJS__PACKAGE_VERSION":"2.4.3"};
2
+ const env = {"__INNETJS__PACKAGE_VERSION":"2.4.4"};
3
3
  if (typeof process === 'undefined') {
4
4
  globalThis.process = { env: env };
5
5
  } else if (process.env) {
package/bin/innet CHANGED
@@ -74,6 +74,7 @@ const lintInclude = [
74
74
  '**/*.tsx',
75
75
  '**/*.js',
76
76
  '**/*.jsx',
77
+ '**/*.mjs',
77
78
  ];
78
79
  const imageInclude = [
79
80
  '**/*.gif',
@@ -801,7 +802,7 @@ class InnetJS {
801
802
  }
802
803
 
803
804
  (function () {
804
- const env = {"__INNETJS__PACKAGE_VERSION":"2.4.3"};
805
+ const env = {"__INNETJS__PACKAGE_VERSION":"2.4.4"};
805
806
  if (typeof process === 'undefined') {
806
807
  globalThis.process = { env: env };
807
808
  } else if (process.env) {
package/constants.js CHANGED
@@ -7,6 +7,7 @@ const lintInclude = [
7
7
  '**/*.tsx',
8
8
  '**/*.js',
9
9
  '**/*.jsx',
10
+ '**/*.mjs',
10
11
  ];
11
12
  const imageInclude = [
12
13
  '**/*.gif',
package/constants.mjs CHANGED
@@ -3,6 +3,7 @@ const lintInclude = [
3
3
  '**/*.tsx',
4
4
  '**/*.js',
5
5
  '**/*.jsx',
6
+ '**/*.mjs',
6
7
  ];
7
8
  const imageInclude = [
8
9
  '**/*.gif',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "innetjs",
3
- "version": "2.4.3",
3
+ "version": "2.4.4",
4
4
  "description": "CLI for innet boilerplate",
5
5
  "homepage": "https://github.com/d8corp/innetjs",
6
6
  "author": "Mikhail Lysikov <d8corp@mail.ru>",