funkophile 0.0.12 → 0.0.13

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 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-promise";
6
+ import { glob } from "glob-promise";
7
7
  import path from "path";
8
8
  import Promise from "bluebird";
9
9
  export default (funkophileConfig, mode) => {
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 glob from "glob-promise";
6
+ import { glob } from "glob-promise";
7
7
  import path from "path";
8
8
  import Promise from "bluebird";
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "funkophile",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "repository": "git@github.com:adamwong246/funkophile.git",
5
5
  "author": "adam wong <adamwong246@gmail.com>",
6
6
  "license": "MIT",
@@ -17,8 +17,7 @@
17
17
  "@types/fs-extra": "^11.0.4",
18
18
  "@types/redux": "^3.6.0",
19
19
  "@types/reselect": "^2.2.0",
20
- "glob": "^11.0.1",
21
- "glob-promise": "^6.0.7",
20
+ "glob-promise": "6.0.7",
22
21
  "tsc": "^2.0.4",
23
22
  "typescript": "^5.8.2"
24
23
  },