Skip to content

Commit

Permalink
[fixed] Add missed semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKVal committed Apr 13, 2015
1 parent 2111799 commit 20b608f
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/src/CodeMirror.client.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ import from './CodeMirror.css';
export default {
IS_NODE: false,
CodeMirror
}
};
2 changes: 1 addition & 1 deletion docs/src/CodeMirror.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
IS_NODE: true,
CodeMirror: {}
}
};
2 changes: 1 addition & 1 deletion docs/src/Routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ export default (
<Route name='getting-started' path='getting-started.html' handler={GettingStartedPage} />
<Route name='components' path='components.html' handler={ComponentsPage} />
</Route>
)
);
2 changes: 1 addition & 1 deletion tools/fs-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ function copy(src, dest, options) {

export default {
copy
}
};
2 changes: 1 addition & 1 deletion tools/release-scripts/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ export default (repoRoot, version) => {
return exec(`node_modules/.bin/changelog -t v${version}`)
.then(() => exec(`git add ${path.join(repoRoot, 'CHANGELOG.md')}`))
.then(() => console.log('Generated Changelog'.cyan));
}
};
2 changes: 1 addition & 1 deletion tools/release-scripts/repo-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ export default (repo, srcFolder, tmpFolder, version) => {
.then(() => exec(`cd ${tmpFolder} && git push --tags`))
.then(() => exec(`rimraf ${tmpFolder}`))
.then(() => console.log('Released: '.cyan + repo.green));
}
};
2 changes: 1 addition & 1 deletion tools/release-scripts/tag-and-publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export default (version) => {
.then(() => exec(`git push --tags`))
.then(() => exec('npm publish'))
.then(() => console.log('Released: '.cyan + 'npm module'.green));
}
};
2 changes: 1 addition & 1 deletion webpack/strategies/development.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ export default (config, options) => {
}

return config;
}
};
2 changes: 1 addition & 1 deletion webpack/strategies/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ export default (config, options) => {
}

return config;
}
};
2 changes: 1 addition & 1 deletion webpack/strategies/ie8.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ export default (config, options) => {
}

return config;
}
};
2 changes: 1 addition & 1 deletion webpack/strategies/optimize.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ export default (config, options) => {
}

return config;
}
};
2 changes: 1 addition & 1 deletion webpack/strategies/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ export default (config, options) => {
}

return config;
}
};
2 changes: 1 addition & 1 deletion webpack/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ export default (options) => {
return strategies.reduce((conf, strategy) => {
return strategy(conf, options);
}, config);
}
};

0 comments on commit 20b608f

Please sign in to comment.