funkophile 0.0.16 → 0.0.18
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/esm/index.js +2 -1
- package/index.ts +2 -1
- package/package.json +2 -3
package/dist/esm/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { createSelector } from "reselect";
|
|
|
3
3
|
import { createStore } from "redux";
|
|
4
4
|
import fs from "fs";
|
|
5
5
|
import fse from "fs-extra";
|
|
6
|
-
import { glob } from "glob
|
|
6
|
+
import { glob } from "glob";
|
|
7
7
|
import path from "path";
|
|
8
8
|
import Promise from "bluebird";
|
|
9
9
|
export default (funkophileConfig, mode) => {
|
|
@@ -127,6 +127,7 @@ export default (funkophileConfig, mode) => {
|
|
|
127
127
|
const p = path.resolve(`./${funkophileConfig.options.inFolder}/${funkophileConfig.inputs[inputRuleKey] || ""}`);
|
|
128
128
|
return new Promise((fulfill, reject) => {
|
|
129
129
|
if (mode === "build") {
|
|
130
|
+
console.log("glob", glob.glob);
|
|
130
131
|
glob(p, {})
|
|
131
132
|
.then((files) => {
|
|
132
133
|
files.forEach((file) => {
|
package/index.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { createSelector } from "reselect";
|
|
|
3
3
|
import { Action, createStore, Store } from "redux";
|
|
4
4
|
import fs from "fs";
|
|
5
5
|
import fse from "fs-extra";
|
|
6
|
-
import {
|
|
6
|
+
import {glob} from "glob";
|
|
7
7
|
import path from "path";
|
|
8
8
|
import Promise from "bluebird";
|
|
9
9
|
|
|
@@ -180,6 +180,7 @@ export default (funkophileConfig: any, mode: string) => {
|
|
|
180
180
|
|
|
181
181
|
return new Promise((fulfill, reject) => {
|
|
182
182
|
if (mode === "build") {
|
|
183
|
+
console.log("glob", glob.glob)
|
|
183
184
|
glob(p, {})
|
|
184
185
|
.then((files: string[]) => {
|
|
185
186
|
files.forEach((file) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "funkophile",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"repository": "git@github.com:adamwong246/funkophile.git",
|
|
5
5
|
"author": "adam wong <adamwong246@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,8 +18,7 @@
|
|
|
18
18
|
"@types/redux": "^3.6.0",
|
|
19
19
|
"@types/reselect": "^2.2.0",
|
|
20
20
|
"bluebird": "3.7.2",
|
|
21
|
-
"glob": "
|
|
22
|
-
"glob-promise": "6.0.7",
|
|
21
|
+
"glob": "11.0.1",
|
|
23
22
|
"tsc": "^2.0.4",
|
|
24
23
|
"typescript": "^5.8.2"
|
|
25
24
|
},
|