File tree 4 files changed +16
-2
lines changed
4 files changed +16
-2
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * Copyright (c) 2015-present, Facebook, Inc.
3
+ * All rights reserved.
4
+ *
5
+ * This source code is licensed under the BSD-style license found in the
6
+ * LICENSE file in the root directory of this source tree. An additional grant
7
+ * of patent rights can be found in the PATENTS file in the same directory.
8
+ */
9
+
10
+ 'use strict' ;
11
+
12
+ var inquirer = require ( 'inquirer' ) ;
13
+
14
+ module . exports = inquirer ;
Original file line number Diff line number Diff line change 25
25
" openBrowser.js" ,
26
26
" openChrome.applescript" ,
27
27
" printHostingInstructions.js" ,
28
+ " inquirer.js" ,
28
29
" WatchMissingNodeModulesPlugin.js" ,
29
30
" WebpackDevServerUtils.js" ,
30
31
" webpackHotDevClient.js"
Original file line number Diff line number Diff line change 45
45
"file-loader" : " 0.11.1" ,
46
46
"fs-extra" : " 3.0.1" ,
47
47
"html-webpack-plugin" : " 2.28.0" ,
48
- "inquirer" : " 3.0.6" ,
49
48
"jest" : " 20.0.3" ,
50
49
"object-assign" : " 4.1.1" ,
51
50
"postcss-flexbugs-fixes" : " 3.0.0" ,
Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ const fs = require('fs-extra');
20
20
const path = require ( 'path' ) ;
21
21
const spawnSync = require ( 'cross-spawn' ) . sync ;
22
22
const chalk = require ( 'chalk' ) ;
23
- const inquirer = require ( 'inquirer' ) ;
24
23
const paths = require ( '../config/paths' ) ;
25
24
const createJestConfig = require ( './utils/createJestConfig' ) ;
25
+ const inquirer = require ( 'react-dev-utils/inquirer' ) ;
26
26
27
27
const green = chalk . green ;
28
28
const cyan = chalk . cyan ;
You can’t perform that action at this time.
0 commit comments