mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Merge pull request #2397 from mjul/fix-gruntfile
Added missing semicolon after statement.
This commit is contained in:
+1
-1
@@ -99,7 +99,7 @@ module.exports = function(grunt) {
|
||||
'populist:test'
|
||||
]);
|
||||
grunt.registerTask('build:npm-react', ['version-check', 'jsx:normal', 'npm-react:release']);
|
||||
grunt.registerTask('build:gem-react-source', ['build', 'gem-react-source:release'])
|
||||
grunt.registerTask('build:gem-react-source', ['build', 'gem-react-source:release']);
|
||||
|
||||
grunt.registerTask('webdriver-phantomjs', webdriverPhantomJSTask);
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -238,7 +238,7 @@ function loadScripts(scripts) {
|
||||
sourceMap: true
|
||||
};
|
||||
if (/;harmony=true(;|$)/.test(script.type)) {
|
||||
options.harmony = true
|
||||
options.harmony = true;
|
||||
}
|
||||
|
||||
// script.async is always true for non-javascript script tags
|
||||
|
||||
Vendored
+1
-1
@@ -79,7 +79,7 @@ var visitors = {
|
||||
}
|
||||
this.traverse(nodePath);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function transform(ast, constants) {
|
||||
// TODO constants
|
||||
|
||||
Reference in New Issue
Block a user