milkee 0.0.9 → 0.0.10

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/main.js CHANGED
@@ -135,7 +135,9 @@
135
135
  commandParts.push(`\"${config.entry}\"`);
136
136
  command = commandParts.filter(Boolean).join(' ');
137
137
  if (milkeeOptions.confirm) {
138
- toContinue = (await consola.prompt("Do you want to continue?"));
138
+ toContinue = (await consola.prompt("Do you want to continue?", {
139
+ type: "confirm"
140
+ }));
139
141
  if (toContinue !== true) {
140
142
  return;
141
143
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "milkee",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "A simple CoffeeScript build tool with coffee.config.js",
5
5
  "main": "dist/main.js",
6
6
  "bin": {
@@ -3,8 +3,8 @@ module.exports = {
3
3
  // This can be a single file or a directory.
4
4
  entry: 'src',
5
5
  // The output for the compiled JavaScript files.
6
- // If 'join' is true, this should be a single file path (e.g., 'dist/app.js').
7
- // If 'join' is false, this should be a directory (e.g., 'dist').
6
+ // If 'options.join' is true, this should be a single file path (e.g., 'dist/app.js').
7
+ // If 'options.join' is false, this should be a directory (e.g., 'dist').
8
8
  output: 'dist',
9
9
  // (Optional) Additional options for the CoffeeScript compiler.
10
10
  // See `coffee --help` for all available options.
@@ -26,7 +26,7 @@ module.exports = {
26
26
  // Before compiling, reset the directory.
27
27
  // refresh: false,
28
28
  // Before compiling, confirm "Do you want to Continue?"
29
- // confirm: false
29
+ // confirm: false,
30
30
  },
31
31
  plugins: []
32
32
  },