Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Misc fixes for Windows #60

Merged
merged 1 commit into from
Jul 21, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ cache:
directories:
- global-cli/node_modules
- node_modules
script: tests/e2e.sh
script: tasks/e2e.sh
37 changes: 5 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"babel-preset-es2015": "6.9.0",
"babel-preset-es2016": "6.11.3",
"babel-preset-react": "6.11.1",
"chalk": "^1.1.3",
"chalk": "1.1.3",
"cross-spawn": "4.0.0",
"css-loader": "0.23.1",
"eslint": "3.1.1",
Expand All @@ -55,38 +55,11 @@
"webpack-dev-server": "1.14.1"
},
"devDependencies": {
"bundle-deps": "^1.0.0",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This utility writes bundledDependencies to package.json so we don’t have to maintain two lists

"react": "^15.2.1",
"react-dom": "^15.2.1"
},
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bye bye manual list

"bundledDependencies": [
"autoprefixer",
"babel-core",
"babel-eslint",
"babel-loader",
"babel-plugin-syntax-trailing-function-commas",
"babel-plugin-transform-class-properties",
"babel-plugin-transform-object-rest-spread",
"babel-plugin-transform-react-constant-elements",
"babel-preset-es2015",
"babel-preset-es2016",
"babel-preset-react",
"chalk",
"cross-spawn",
"css-loader",
"eslint",
"eslint-loader",
"eslint-plugin-import",
"eslint-plugin-react",
"extract-text-webpack-plugin",
"file-loader",
"html-webpack-plugin",
"json-loader",
"opn",
"postcss-loader",
"rimraf",
"style-loader",
"url-loader",
"webpack",
"webpack-dev-server"
]
"optionalDependencies": {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Webpack depends on Watchpack depends on Chokidar depends on fsevents.
fsevents is OS X-only.

If we naïvely include webpack into bundledDependencies (which we want to do), fsevents ends up there as well, and Windows machines fail to install the whole bundle.

The solution I’m using is the following:

  1. Populate bundled dependencies as prepublish step
  2. Delete node_modules/fsevents just before publishing so it doesn't get bundled
  3. However! It exists in optionalDependencies so it'll get installed separately on supported systems

"fsevents": "1.0.14"
}
}
40 changes: 22 additions & 18 deletions scripts/eject.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,27 +51,27 @@ prompt('Are you sure you want to eject? This action is permanent. [y/N]', functi

// Ensure that the host folder is clean and we won't override any files
files.forEach(function(file) {
if (fs.existsSync(path.join(hostPath, file))) {
console.error(
'`' + file + '` already exists in your app folder. We cannot ' +
'continue as you would lose all the changes in that file or directory. ' +
'Please delete it (maybe make a copy for backup) and run this ' +
'command again.'
);
process.exit(1);
}
if (fs.existsSync(path.join(hostPath, file))) {
console.error(
'`' + file + '` already exists in your app folder. We cannot ' +
'continue as you would lose all the changes in that file or directory. ' +
'Please delete it (maybe make a copy for backup) and run this ' +
'command again.'
);
process.exit(1);
}
});

// Copy the files over
fs.mkdirSync(path.join(hostPath, 'config'));
fs.mkdirSync(path.join(hostPath, 'scripts'));

files.forEach(function(file) {
console.log('Copying ' + file + ' to ' + hostPath);
var content = fs.readFileSync(path.join(selfPath, file), 'utf8');
// Remove license header
content = content.replace(/^\/\*\*(\*(?!\/)|[^*])*\*\//, '').trim() + '\n';
fs.writeFileSync(path.join(hostPath, file), content);
console.log('Copying ' + file + ' to ' + hostPath);
var content = fs.readFileSync(path.join(selfPath, file), 'utf8');
// Remove license header
content = content.replace(/^\/\*\*(\*(?!\/)|[^*])*\*\//, '').trim() + '\n';
fs.writeFileSync(path.join(hostPath, file), content);
});
console.log();

Expand All @@ -82,8 +82,12 @@ prompt('Are you sure you want to eject? This action is permanent. [y/N]', functi
delete hostPackage.devDependencies['react-scripts'];

Object.keys(selfPackage.dependencies).forEach(function (key) {
console.log('Adding dependency: ' + key);
hostPackage.devDependencies[key] = selfPackage.dependencies[key];
// For some reason optionalDependencies end up in dependencies after install
if (selfPackage.optionalDependencies[key]) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is confusing but I noticed fsevents ended up in ejected package.json because Node puts optionalDependencies into published package.json's dependencies list. I'm checking for this explicitly here.

return;
}
console.log('Adding dependency: ' + key);
hostPackage.devDependencies[key] = selfPackage.dependencies[key];
});

console.log('Updating scripts');
Expand All @@ -94,8 +98,8 @@ prompt('Are you sure you want to eject? This action is permanent. [y/N]', functi

console.log('Writing package.json');
fs.writeFileSync(
path.join(hostPath, 'package.json'),
JSON.stringify(hostPackage, null, 2)
path.join(hostPath, 'package.json'),
JSON.stringify(hostPackage, null, 2)
);
console.log();

Expand Down
6 changes: 3 additions & 3 deletions scripts/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ module.exports = function(hostPath, appName, verbose) {
var hostPackage = require(path.join(hostPath, 'package.json'));
var selfPackage = require(path.join(selfPath, 'package.json'));

// Copy over devDependencies
// Copy over some of the devDependencies
hostPackage.dependencies = hostPackage.dependencies || {};
for (var key in selfPackage.devDependencies) {
['react', 'react-dom'].forEach(function (key) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added bundle-deps to devDependencies and we might add more dev deps later so need a whitelist now.

hostPackage.dependencies[key] = selfPackage.devDependencies[key];
}
});

// Setup the script rules
hostPackage.scripts = {};
Expand Down
2 changes: 1 addition & 1 deletion scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function formatMessage(message) {
'Module not found:'
)
// Internal stacks are generally useless so we strip them
.replace(/^\s*at\s.*\(.*:\d+:\d+\.*\).*\n/gm, '') // at ... (...:x:y)
.replace(/^\s*at\s.*:\d+:\d+[\s\)]*\n/gm, '') // at ... ...:x:y
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Relax regex for Windows which doesn't use parens in some cases

// Webpack loader names obscure CSS filenames
.replace('./~/css-loader!./~/postcss-loader!', '');
}
Expand Down
File renamed without changes.
48 changes: 48 additions & 0 deletions tasks/release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Copyright (c) 2015-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.

# Start in tests/ even if run from root directory
cd "$(dirname "$0")"

# Exit the script on any command with non 0 return code
# We assume that all the commands in the pipeline set their return code
# properly and that we do not need to validate that the output is correct
set -e

# Echo every command being executed
set -x

# Go to root
cd ..

# You can only release with npm >= 3
if [ $(npm -v | head -c 1) -lt 3 ]; then
echo "Releasing requires npm >= 3. Aborting.";
exit 1;
fi;

if [ -n "$(git status --porcelain)" ]; then
echo "Your git status is not clean. Aborting.";
exit 1;
fi

# Force dedupe
npm dedupe

# Don't bundle fsevents because it is optional and OS X-only
# Since it's in optionalDependencies, it will attempt install outside bundle
rm -rf node_modules/fsevents
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hacky McHack 😄


# This modifies package.json to copy all dependencies to bundledDependencies
# We will revert package.json back after release to avoid doing it every time
node ./node_modules/.bin/bundle-deps

# Go!
npm publish "$@"

# Discard changes to package.json
git checkout -- .
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This removes bundledDependencies because we don't care about keeping them in source control