Skip to content

Commit 25a0efc

Browse files
committed
Rename kebab-case file to snake_case
1 parent 673a3c9 commit 25a0efc

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
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

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rollup.config.js

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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)