mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
removed unnecessary resolve
This commit is contained in:
@@ -349,8 +349,8 @@ rimraf('build', async () => {
|
||||
// create the facebookWWW shims folder for FB shims
|
||||
mkdirSync(join('build', facebookWWW, 'shims'));
|
||||
// copy in all the shims from build/rollup/shims/facebook-ww to the FB shims build
|
||||
const from = resolve(join('scripts', 'rollup', 'shims', facebookWWW));
|
||||
const to = resolve(join('build', facebookWWW, 'shims'));
|
||||
const from = join('scripts', 'rollup', 'shims', facebookWWW);
|
||||
const to = join('build', facebookWWW, 'shims');
|
||||
|
||||
ncp(from, to, error => {
|
||||
if (error) {
|
||||
|
||||
Reference in New Issue
Block a user