milkee 0.0.13 → 0.0.14

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.
Files changed (2) hide show
  1. package/dist/main.js +2 -2
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -81,7 +81,7 @@
81
81
  };
82
82
 
83
83
  compile = async function() {
84
- var command, commandParts, compilerProcess, config, enabledOptons, enabledOptonsList, error, i, item, itemPath, items, len, milkee, milkeeOptions, options, otherOptionStrings, summary, targetDir, toContinue;
84
+ var command, commandParts, compilerProcess, config, enabledOptions, enabledOptonsList, error, i, item, itemPath, items, len, milkee, milkeeOptions, options, otherOptionStrings, summary, targetDir, toContinue;
85
85
  checkCoffee();
86
86
  if (!fs.existsSync(CONFIG_PATH)) {
87
87
  consola.error(`\`${CONFIG_FILE}\` not found in this directory: ${CWD}`);
@@ -101,7 +101,7 @@
101
101
  summary = [];
102
102
  summary.push(`Entry: \`${config.entry}\``);
103
103
  summary.push(`Output: \`${config.output}\``);
104
- enabledOptons = Object.keys(options).filter(function(key) {
104
+ enabledOptions = Object.keys(options).filter(function(key) {
105
105
  return options[key];
106
106
  });
107
107
  if (enabledOptons.length > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "milkee",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "A simple CoffeeScript build tool with coffee.config.js",
5
5
  "main": "dist/main.js",
6
6
  "bin": {