diff options
author | Luca Casonato <hello@lcas.dev> | 2024-01-24 22:24:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 21:24:52 +0000 |
commit | 52ad1ef154d352529c4ad4857ab82d8478aeb105 (patch) | |
tree | d124302669a06af03af41c3c30be1ba711c15793 /cli/tests/testdata/publish/invalid_path/mod.ts | |
parent | fc176c4dea7463d587a1e921780cce55552e0c86 (diff) |
feat(publish): give diagnostic on invalid package files (#22082)
Diffstat (limited to 'cli/tests/testdata/publish/invalid_path/mod.ts')
-rw-r--r-- | cli/tests/testdata/publish/invalid_path/mod.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/testdata/publish/invalid_path/mod.ts b/cli/tests/testdata/publish/invalid_path/mod.ts new file mode 100644 index 000000000..9e217d9b0 --- /dev/null +++ b/cli/tests/testdata/publish/invalid_path/mod.ts @@ -0,0 +1,3 @@ +export function foobar(): string { + return "string"; +} |