Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e36cd53

Browse files
committedMay 27, 2019
Rename kebab-case files to snake_case
1 parent 673a3c9 commit e36cd53

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed
 

‎.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.nyc_output
44
node_modules
55
*.map
6-
/src/compile/internal-exports.ts
6+
/src/compile/internal_exports.ts
77
/compiler.*js
88
/index.*js
99
/internal.*js

‎package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎rollup.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default [
4242
generateBundle(options, bundle) {
4343
const mod = bundle['internal.mjs'];
4444
if (mod) {
45-
fs.writeFileSync('src/compile/internal-exports.ts', `// This file is automatically generated\nexport default new Set(${JSON.stringify(mod.exports)});`);
45+
fs.writeFileSync('src/compile/internal_exports.ts', `// This file is automatically generated\nexport default new Set(${JSON.stringify(mod.exports)});`);
4646
}
4747
}
4848
}]

‎src/compile/Component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { create_scopes, extract_names, Scope, extract_identifiers } from './util
1010
import Stylesheet from './css/Stylesheet';
1111
import { test } from '../config';
1212
import Fragment from './nodes/Fragment';
13-
import internal_exports from './internal-exports';
13+
import internal_exports from './internal_exports';
1414
import { Node, Ast, CompileOptions, Var, Warning } from '../interfaces';
1515
import error from '../utils/error';
1616
import get_code_frame from '../utils/get_code_frame';
File renamed without changes.

‎src/internal/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export * from './animations';
2-
export * from './await-block';
2+
export * from './await_block';
33
export * from './dom';
4-
export * from './keyed-each';
4+
export * from './keyed_each';
55
export * from './lifecycle';
66
export * from './loop';
77
export * from './scheduler';
File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.