1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/specs/check/css_import
David Sherret 43c8c1cc6e
feat(check): allow using side effect imports with unknown module kinds (ex. css modules) (#23392)
This allows people to use imports like:

```ts
import "./app.css";
```

...with `deno check` in systems where there's a bundle step (ex. Vite).
This will still error when using it with `deno run` or if the referenced
file does not exist.

See test cases for behaviour.
2024-04-16 16:46:31 -04:00
..
__test__.jsonc feat(check): allow using side effect imports with unknown module kinds (ex. css modules) (#23392) 2024-04-16 16:46:31 -04:00
app.css feat(check): allow using side effect imports with unknown module kinds (ex. css modules) (#23392) 2024-04-16 16:46:31 -04:00
exists.out feat(check): allow using side effect imports with unknown module kinds (ex. css modules) (#23392) 2024-04-16 16:46:31 -04:00
exists.ts feat(check): allow using side effect imports with unknown module kinds (ex. css modules) (#23392) 2024-04-16 16:46:31 -04:00
exists_and_try_uses.out feat(check): allow using side effect imports with unknown module kinds (ex. css modules) (#23392) 2024-04-16 16:46:31 -04:00
exists_and_try_uses.ts feat(check): allow using side effect imports with unknown module kinds (ex. css modules) (#23392) 2024-04-16 16:46:31 -04:00
exists_dynamic_import.ts feat(check): allow using side effect imports with unknown module kinds (ex. css modules) (#23392) 2024-04-16 16:46:31 -04:00
exists_run_with_check.out feat(check): allow using side effect imports with unknown module kinds (ex. css modules) (#23392) 2024-04-16 16:46:31 -04:00
not_exists.out feat(check): allow using side effect imports with unknown module kinds (ex. css modules) (#23392) 2024-04-16 16:46:31 -04:00
not_exists.ts feat(check): allow using side effect imports with unknown module kinds (ex. css modules) (#23392) 2024-04-16 16:46:31 -04:00