funkophile 0.0.18 → 0.0.19

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
@@ -127,7 +127,6 @@ 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);
131
130
  glob(p, {})
132
131
  .then((files) => {
133
132
  files.forEach((file) => {
package/index.ts CHANGED
@@ -180,7 +180,6 @@ 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)
184
183
  glob(p, {})
185
184
  .then((files: string[]) => {
186
185
  files.forEach((file) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "funkophile",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "repository": "git@github.com:adamwong246/funkophile.git",
5
5
  "author": "adam wong <adamwong246@gmail.com>",
6
6
  "license": "MIT",