lucy-cli 1.0.1 → 1.0.2
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 +2 -1
- package/package.json +1 -1
- package/src/gulp/checks.ts +3 -1
package/dist/gulp/checks.js
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
import * as fs from 'fs';
|
2
|
-
import
|
2
|
+
import globPkg 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;
|
7
8
|
/**
|
8
9
|
* Extracts a match from a file
|
9
10
|
* @param {string} filePath File path
|
package/package.json
CHANGED
package/src/gulp/checks.ts
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
import * as fs from 'fs';
|
2
|
-
import
|
2
|
+
import globPkg from 'glob';
|
3
|
+
|
3
4
|
import * as path from 'path';
|
4
5
|
import gulp from 'gulp';
|
5
6
|
import ts from 'gulp-typescript';
|
6
7
|
import { blue, green, magenta, orange, red, yellow } from '../index.js';
|
7
8
|
import { TaskOptions } from '../Gulpfile.js';
|
9
|
+
const { glob } = globPkg;
|
8
10
|
|
9
11
|
/**
|
10
12
|
* Extracts a match from a file
|