Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sprutton1 committed Dec 20, 2024
1 parent dc8e480 commit b0c3cd1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 24 deletions.
2 changes: 1 addition & 1 deletion bin/lang-js/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ filegroup(
)

prod_deps_srcs = {
"lib/ts-lib": "//lib/ts-lib:src",
"lib/ts-lib-deno": "//lib/ts-lib-deno:src",
}

deno_compile(
Expand Down
4 changes: 2 additions & 2 deletions bin/lang-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"vitest": "^1.0.4"
},
"dependencies": {
"@si/ts-lib": "workspace:*",
"@si/ts-lib-deno": "workspace:*",
"@typescript/vfs": "^1.4.0",
"commander": "^9.2.0",
"execa": "^5.1.1",
Expand All @@ -80,7 +80,7 @@
"sourcemap": true,
"clean": true,
"noExternal": [
"@si/ts-lib",
"@si/ts-lib-deno",
"lodash-es"
]
}
Expand Down
3 changes: 0 additions & 3 deletions lib/ts-lib-deno/.eslintrc.cjs

This file was deleted.

19 changes: 1 addition & 18 deletions lib/ts-lib-deno/BUCK
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
load(
"@prelude-si//:macros.bzl",
"eslint",
"export_file",
"filegroup",
"package_node_modules",
"typescript_check",
)

export_file(
Expand All @@ -13,7 +11,7 @@ export_file(

package_node_modules(
name = "node_modules",
package_name = "@si/ts-lib",
package_name = "@si/ts-lib-deno",
)

filegroup(
Expand All @@ -27,20 +25,5 @@ filegroup(
prod_deps_srcs = {}

dev_deps_srcs = {
"lib/eslint-config": "//lib/eslint-config:src",
"lib/tsconfig": "//lib/tsconfig:src",
}

eslint(
name = "check-lint",
srcs = [":src"] + glob([".eslint*"]),
prod_deps_srcs = prod_deps_srcs,
dev_deps_srcs = dev_deps_srcs,
)

typescript_check(
name = "check-type",
srcs = [":src"],
prod_deps_srcs = prod_deps_srcs,
dev_deps_srcs = dev_deps_srcs,
)

0 comments on commit b0c3cd1

Please sign in to comment.