lucy-cli 1.0.2 → 1.0.3
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/dist/gulp/checks.js +1 -2
- package/package.json +2 -2
- package/src/gulp/checks.ts +1 -3
package/dist/gulp/checks.js
CHANGED
@@ -1,10 +1,9 @@
|
|
1
1
|
import * as fs from 'fs';
|
2
|
-
import
|
2
|
+
import { glob } from 'glob';
|
3
3
|
import * as path from 'path';
|
4
4
|
import gulp from 'gulp';
|
5
5
|
import ts from 'gulp-typescript';
|
6
6
|
import { blue, green, magenta, orange, red, yellow } from '../index.js';
|
7
|
-
const { glob } = globPkg;
|
8
7
|
/**
|
9
8
|
* Extracts a match from a file
|
10
9
|
* @param {string} filePath File path
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"type": "module",
|
3
3
|
"name": "lucy-cli",
|
4
|
-
"version": "1.0.
|
4
|
+
"version": "1.0.3",
|
5
5
|
"description": "Lucy Framework for WIX Studio Editor",
|
6
6
|
"main": ".dist/index.js",
|
7
7
|
"scripts": {
|
@@ -23,6 +23,7 @@
|
|
23
23
|
],
|
24
24
|
"author": "Gradlon von Känel",
|
25
25
|
"license": "MIT",
|
26
|
+
"node": ">=20.0.0",
|
26
27
|
"bugs": {
|
27
28
|
"url": "https://github.com/Integral-Systems/wix-lucy-cli/issues"
|
28
29
|
},
|
@@ -94,7 +95,6 @@
|
|
94
95
|
"eslint-plugin-jsdoc": "50.5.0",
|
95
96
|
"eslint-plugin-named-import-spacing": "^1.0.3",
|
96
97
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
97
|
-
"i": "^0.3.7",
|
98
98
|
"npm": "^11.0.0",
|
99
99
|
"ts-node": "^10.9.1"
|
100
100
|
}
|
package/src/gulp/checks.ts
CHANGED
@@ -1,12 +1,10 @@
|
|
1
1
|
import * as fs from 'fs';
|
2
|
-
import
|
3
|
-
|
2
|
+
import { glob } from 'glob';
|
4
3
|
import * as path from 'path';
|
5
4
|
import gulp from 'gulp';
|
6
5
|
import ts from 'gulp-typescript';
|
7
6
|
import { blue, green, magenta, orange, red, yellow } from '../index.js';
|
8
7
|
import { TaskOptions } from '../Gulpfile.js';
|
9
|
-
const { glob } = globPkg;
|
10
8
|
|
11
9
|
/**
|
12
10
|
* Extracts a match from a file
|