milkee 0.0.16 → 0.0.17

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 +7 -7
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -98,6 +98,13 @@
98
98
  milkee = config.milkee || {};
99
99
  milkeeOptions = config.milkee.options || {};
100
100
  commandParts = ['coffee'];
101
+ if (options.join) {
102
+ commandParts.push('--join');
103
+ commandParts.push(`\"${config.output}\"`);
104
+ } else {
105
+ commandParts.push('--output');
106
+ commandParts.push(`\"${config.output}\"`);
107
+ }
101
108
  summary = [];
102
109
  summary.push(`Entry: \`${config.entry}\``);
103
110
  summary.push(`Output: \`${config.output}\``);
@@ -155,13 +162,6 @@
155
162
  return;
156
163
  }
157
164
  }
158
- if (options.join) {
159
- commandParts.push('--join');
160
- commandParts.push(`\"${config.output}\"`);
161
- } else {
162
- commandParts.push('--output');
163
- commandParts.push(`\"${config.output}\"`);
164
- }
165
165
  delete options.join;
166
166
  if (milkeeOptions.refresh) {
167
167
  targetDir = path.join(CWD, config.output);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "milkee",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "A simple CoffeeScript build tool with coffee.config.js",
5
5
  "main": "dist/main.js",
6
6
  "bin": {