Skip to content

Commit 20b608f

Browse files
committed
[fixed] Add missed semicolons.
1 parent 2111799 commit 20b608f

13 files changed

+13
-13
lines changed

docs/src/CodeMirror.client.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ import from './CodeMirror.css';
99
export default {
1010
IS_NODE: false,
1111
CodeMirror
12-
}
12+
};

docs/src/CodeMirror.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export default {
22
IS_NODE: true,
33
CodeMirror: {}
4-
}
4+
};

docs/src/Routes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ export default (
1717
<Route name='getting-started' path='getting-started.html' handler={GettingStartedPage} />
1818
<Route name='components' path='components.html' handler={ComponentsPage} />
1919
</Route>
20-
)
20+
);

tools/fs-utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ function copy(src, dest, options) {
3636

3737
export default {
3838
copy
39-
}
39+
};

tools/release-scripts/changelog.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ export default (repoRoot, version) => {
66
return exec(`node_modules/.bin/changelog -t v${version}`)
77
.then(() => exec(`git add ${path.join(repoRoot, 'CHANGELOG.md')}`))
88
.then(() => console.log('Generated Changelog'.cyan));
9-
}
9+
};

tools/release-scripts/repo-release.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ export default (repo, srcFolder, tmpFolder, version) => {
3030
.then(() => exec(`cd ${tmpFolder} && git push --tags`))
3131
.then(() => exec(`rimraf ${tmpFolder}`))
3232
.then(() => console.log('Released: '.cyan + repo.green));
33-
}
33+
};

tools/release-scripts/tag-and-publish.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export default (version) => {
88
.then(() => exec(`git push --tags`))
99
.then(() => exec('npm publish'))
1010
.then(() => console.log('Released: '.cyan + 'npm module'.green));
11-
}
11+
};

webpack/strategies/development.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ export default (config, options) => {
1010
}
1111

1212
return config;
13-
}
13+
};

webpack/strategies/docs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ export default (config, options) => {
5252
}
5353

5454
return config;
55-
}
55+
};

webpack/strategies/ie8.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ export default (config, options) => {
2323
}
2424

2525
return config;
26-
}
26+
};

webpack/strategies/optimize.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ export default (config, options) => {
1212
}
1313

1414
return config;
15-
}
15+
};

webpack/strategies/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ export default (config, options) => {
1515
}
1616

1717
return config;
18-
}
18+
};

webpack/webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ export default (options) => {
6060
return strategies.reduce((conf, strategy) => {
6161
return strategy(conf, options);
6262
}, config);
63-
}
63+
};

0 commit comments

Comments
 (0)