@isense-development/test-npm 2.0.9 → 2.0.10
Sign up to get free protection for your applications and to get access to all the features.
- package/install.js +2 -2
- package/package.json +1 -1
package/install.js
CHANGED
@@ -5,7 +5,7 @@ let fs = require('fs')
|
|
5
5
|
const chalk = require('chalk')
|
6
6
|
var copyfiles = require('copyfiles');
|
7
7
|
|
8
|
-
var dir = '
|
8
|
+
var dir = 'src/tmp';
|
9
9
|
if (!fs.existsSync(dir)) {
|
10
10
|
console.log(chalk.yellow('creating `tmp` directory'))
|
11
11
|
fs.mkdirSync(dir);
|
@@ -14,4 +14,4 @@ if (!fs.existsSync(dir)) {
|
|
14
14
|
|
15
15
|
}
|
16
16
|
|
17
|
-
console.log(chalk.yellow(process.env))
|
17
|
+
console.log(chalk.yellow(JSON.stringify(process.env, null, 2)))
|