innetjs 2.6.0-alpha.3 → 2.6.0-alpha.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.
- package/_virtual/_rollup-plugin-process-env.js +1 -1
- package/_virtual/_rollup-plugin-process-env.mjs +1 -1
- package/bin/innet +1 -9
- package/index.js +0 -8
- package/index.mjs +0 -7
- package/package.json +1 -1
package/bin/innet
CHANGED
|
@@ -35,7 +35,6 @@ var env = require('rollup-plugin-process-env');
|
|
|
35
35
|
var styles = require('rollup-plugin-styles');
|
|
36
36
|
var rollupPluginTerser = require('rollup-plugin-terser');
|
|
37
37
|
var tmp = require('tmp');
|
|
38
|
-
var typescript = require('typescript');
|
|
39
38
|
var node_util = require('node:util');
|
|
40
39
|
var unzipper = require('unzipper');
|
|
41
40
|
|
|
@@ -69,7 +68,6 @@ var polyfill__default = /*#__PURE__*/_interopDefaultLegacy(polyfill);
|
|
|
69
68
|
var env__default = /*#__PURE__*/_interopDefaultLegacy(env);
|
|
70
69
|
var styles__default = /*#__PURE__*/_interopDefaultLegacy(styles);
|
|
71
70
|
var tmp__default = /*#__PURE__*/_interopDefaultLegacy(tmp);
|
|
72
|
-
var typescript__default = /*#__PURE__*/_interopDefaultLegacy(typescript);
|
|
73
71
|
|
|
74
72
|
const lintInclude = [
|
|
75
73
|
'**/*.ts',
|
|
@@ -295,7 +293,6 @@ class InnetJS {
|
|
|
295
293
|
commonjs__default["default"](),
|
|
296
294
|
json__default["default"](),
|
|
297
295
|
ts__default["default"]({
|
|
298
|
-
typescript: typescript__default["default"],
|
|
299
296
|
noEmitOnError: true,
|
|
300
297
|
compilerOptions: {
|
|
301
298
|
declaration: false,
|
|
@@ -397,7 +394,6 @@ class InnetJS {
|
|
|
397
394
|
commonjs__default["default"](),
|
|
398
395
|
json__default["default"](),
|
|
399
396
|
ts__default["default"]({
|
|
400
|
-
typescript: typescript__default["default"],
|
|
401
397
|
compilerOptions: {
|
|
402
398
|
declaration: false,
|
|
403
399
|
sourceMap: true,
|
|
@@ -520,7 +516,6 @@ class InnetJS {
|
|
|
520
516
|
pluginNodeResolve.nodeResolve(),
|
|
521
517
|
json__default["default"](),
|
|
522
518
|
ts__default["default"]({
|
|
523
|
-
typescript: typescript__default["default"],
|
|
524
519
|
compilerOptions: {
|
|
525
520
|
sourceMap: true,
|
|
526
521
|
},
|
|
@@ -575,11 +570,9 @@ class InnetJS {
|
|
|
575
570
|
plugins: [
|
|
576
571
|
json__default["default"](),
|
|
577
572
|
ts__default["default"]({
|
|
578
|
-
typescript: typescript__default["default"],
|
|
579
573
|
compilerOptions: {
|
|
580
574
|
sourceMap: false,
|
|
581
575
|
},
|
|
582
|
-
include: [...input, 'src/declaration.d.ts'],
|
|
583
576
|
}),
|
|
584
577
|
jsx__default["default"](),
|
|
585
578
|
externals__default["default"](),
|
|
@@ -634,7 +627,6 @@ class InnetJS {
|
|
|
634
627
|
rollupPluginPreserveShebangs.preserveShebangs(),
|
|
635
628
|
json__default["default"](),
|
|
636
629
|
ts__default["default"]({
|
|
637
|
-
typescript: typescript__default["default"],
|
|
638
630
|
compilerOptions: {
|
|
639
631
|
declaration: false,
|
|
640
632
|
},
|
|
@@ -808,7 +800,7 @@ class InnetJS {
|
|
|
808
800
|
}
|
|
809
801
|
|
|
810
802
|
(function () {
|
|
811
|
-
const env = {"__INNETJS__PACKAGE_VERSION":"2.6.0-alpha.
|
|
803
|
+
const env = {"__INNETJS__PACKAGE_VERSION":"2.6.0-alpha.4"};
|
|
812
804
|
if (typeof process === 'undefined') {
|
|
813
805
|
globalThis.process = { env: env };
|
|
814
806
|
} else if (process.env) {
|
package/index.js
CHANGED
|
@@ -36,7 +36,6 @@ var env = require('rollup-plugin-process-env');
|
|
|
36
36
|
var styles = require('rollup-plugin-styles');
|
|
37
37
|
var rollupPluginTerser = require('rollup-plugin-terser');
|
|
38
38
|
var tmp = require('tmp');
|
|
39
|
-
var typescript = require('typescript');
|
|
40
39
|
var node_util = require('node:util');
|
|
41
40
|
var constants = require('./constants.js');
|
|
42
41
|
var extract = require('./extract.js');
|
|
@@ -73,7 +72,6 @@ var polyfill__default = /*#__PURE__*/_interopDefaultLegacy(polyfill);
|
|
|
73
72
|
var env__default = /*#__PURE__*/_interopDefaultLegacy(env);
|
|
74
73
|
var styles__default = /*#__PURE__*/_interopDefaultLegacy(styles);
|
|
75
74
|
var tmp__default = /*#__PURE__*/_interopDefaultLegacy(tmp);
|
|
76
|
-
var typescript__default = /*#__PURE__*/_interopDefaultLegacy(typescript);
|
|
77
75
|
|
|
78
76
|
const livereload = require('rollup-plugin-livereload');
|
|
79
77
|
const { string } = require('rollup-plugin-string');
|
|
@@ -181,7 +179,6 @@ class InnetJS {
|
|
|
181
179
|
commonjs__default["default"](),
|
|
182
180
|
json__default["default"](),
|
|
183
181
|
ts__default["default"]({
|
|
184
|
-
typescript: typescript__default["default"],
|
|
185
182
|
noEmitOnError: true,
|
|
186
183
|
compilerOptions: {
|
|
187
184
|
declaration: false,
|
|
@@ -283,7 +280,6 @@ class InnetJS {
|
|
|
283
280
|
commonjs__default["default"](),
|
|
284
281
|
json__default["default"](),
|
|
285
282
|
ts__default["default"]({
|
|
286
|
-
typescript: typescript__default["default"],
|
|
287
283
|
compilerOptions: {
|
|
288
284
|
declaration: false,
|
|
289
285
|
sourceMap: true,
|
|
@@ -406,7 +402,6 @@ class InnetJS {
|
|
|
406
402
|
pluginNodeResolve.nodeResolve(),
|
|
407
403
|
json__default["default"](),
|
|
408
404
|
ts__default["default"]({
|
|
409
|
-
typescript: typescript__default["default"],
|
|
410
405
|
compilerOptions: {
|
|
411
406
|
sourceMap: true,
|
|
412
407
|
},
|
|
@@ -461,11 +456,9 @@ class InnetJS {
|
|
|
461
456
|
plugins: [
|
|
462
457
|
json__default["default"](),
|
|
463
458
|
ts__default["default"]({
|
|
464
|
-
typescript: typescript__default["default"],
|
|
465
459
|
compilerOptions: {
|
|
466
460
|
sourceMap: false,
|
|
467
461
|
},
|
|
468
|
-
include: [...input, 'src/declaration.d.ts'],
|
|
469
462
|
}),
|
|
470
463
|
jsx__default["default"](),
|
|
471
464
|
externals__default["default"](),
|
|
@@ -520,7 +513,6 @@ class InnetJS {
|
|
|
520
513
|
rollupPluginPreserveShebangs.preserveShebangs(),
|
|
521
514
|
json__default["default"](),
|
|
522
515
|
ts__default["default"]({
|
|
523
|
-
typescript: typescript__default["default"],
|
|
524
516
|
compilerOptions: {
|
|
525
517
|
declaration: false,
|
|
526
518
|
},
|
package/index.mjs
CHANGED
|
@@ -32,7 +32,6 @@ import env from 'rollup-plugin-process-env';
|
|
|
32
32
|
import styles from 'rollup-plugin-styles';
|
|
33
33
|
import { terser } from 'rollup-plugin-terser';
|
|
34
34
|
import tmp from 'tmp';
|
|
35
|
-
import typescript from 'typescript';
|
|
36
35
|
import { promisify } from 'node:util';
|
|
37
36
|
import { stringExcludeNode, imageInclude, stringExcludeDom, lintInclude } from './constants.mjs';
|
|
38
37
|
import { Extract } from './extract.mjs';
|
|
@@ -145,7 +144,6 @@ class InnetJS {
|
|
|
145
144
|
commonjs(),
|
|
146
145
|
json(),
|
|
147
146
|
ts({
|
|
148
|
-
typescript,
|
|
149
147
|
noEmitOnError: true,
|
|
150
148
|
compilerOptions: {
|
|
151
149
|
declaration: false,
|
|
@@ -247,7 +245,6 @@ class InnetJS {
|
|
|
247
245
|
commonjs(),
|
|
248
246
|
json(),
|
|
249
247
|
ts({
|
|
250
|
-
typescript,
|
|
251
248
|
compilerOptions: {
|
|
252
249
|
declaration: false,
|
|
253
250
|
sourceMap: true,
|
|
@@ -370,7 +367,6 @@ class InnetJS {
|
|
|
370
367
|
nodeResolve(),
|
|
371
368
|
json(),
|
|
372
369
|
ts({
|
|
373
|
-
typescript,
|
|
374
370
|
compilerOptions: {
|
|
375
371
|
sourceMap: true,
|
|
376
372
|
},
|
|
@@ -425,11 +421,9 @@ class InnetJS {
|
|
|
425
421
|
plugins: [
|
|
426
422
|
json(),
|
|
427
423
|
ts({
|
|
428
|
-
typescript,
|
|
429
424
|
compilerOptions: {
|
|
430
425
|
sourceMap: false,
|
|
431
426
|
},
|
|
432
|
-
include: [...input, 'src/declaration.d.ts'],
|
|
433
427
|
}),
|
|
434
428
|
jsx(),
|
|
435
429
|
externals(),
|
|
@@ -484,7 +478,6 @@ class InnetJS {
|
|
|
484
478
|
preserveShebangs(),
|
|
485
479
|
json(),
|
|
486
480
|
ts({
|
|
487
|
-
typescript,
|
|
488
481
|
compilerOptions: {
|
|
489
482
|
declaration: false,
|
|
490
483
|
},
|