mirror of
https://github.com/denoland/deno.git
synced 2025-03-09 13:49:37 -04:00
Run tools/format.py
This commit is contained in:
parent
5562c36824
commit
16caa1173d
3 changed files with 7 additions and 3 deletions
2
BUILD.gn
2
BUILD.gn
|
@ -198,8 +198,8 @@ run_node("bundle") {
|
||||||
"js/runtime.ts",
|
"js/runtime.ts",
|
||||||
"js/types.ts",
|
"js/types.ts",
|
||||||
"js/util.ts",
|
"js/util.ts",
|
||||||
"src/msg.fbs",
|
|
||||||
"rollup.config.js",
|
"rollup.config.js",
|
||||||
|
"src/msg.fbs",
|
||||||
"tsconfig.json",
|
"tsconfig.json",
|
||||||
]
|
]
|
||||||
outputs = [
|
outputs = [
|
||||||
|
|
|
@ -134,7 +134,11 @@ export default function makeConfig(commandOptions) {
|
||||||
include: ["*.ts", `${__dirname}/**/*.ts`, `${process.cwd()}/**/*.ts`],
|
include: ["*.ts", `${__dirname}/**/*.ts`, `${process.cwd()}/**/*.ts`],
|
||||||
|
|
||||||
// d.ts files are not bundled and by default like include, it only includes the cwd and below
|
// d.ts files are not bundled and by default like include, it only includes the cwd and below
|
||||||
exclude: ["*.d.ts", `${__dirname}/**/*.d.ts`, `${process.cwd()}/**/*.d.ts`]
|
exclude: [
|
||||||
|
"*.d.ts",
|
||||||
|
`${__dirname}/**/*.d.ts`,
|
||||||
|
`${process.cwd()}/**/*.d.ts`
|
||||||
|
]
|
||||||
}),
|
}),
|
||||||
|
|
||||||
// Provides inlining of file contents for `js/assets.ts`
|
// Provides inlining of file contents for `js/assets.ts`
|
||||||
|
|
Loading…
Add table
Reference in a new issue