https://github.com/denoland/import_map
An implementation of WICG Import Maps specification
https://github.com/denoland/import_map
importmaps
Last synced: about 2 months ago
JSON representation
An implementation of WICG Import Maps specification
- Host: GitHub
- URL: https://github.com/denoland/import_map
- Owner: denoland
- License: mit
- Created: 2021-09-09T16:10:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-22T01:27:13.000Z (6 months ago)
- Last Synced: 2025-03-28T19:08:33.506Z (about 2 months ago)
- Topics: importmaps
- Language: Rust
- Homepage:
- Size: 1010 KB
- Stars: 31
- Watchers: 17
- Forks: 14
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# import_map
[](https://crates.io/crates/import_map)
[](https://discord.gg/deno)A Rust implementation of
[WICG Import Maps specification](https://github.com/WICG/import-maps).This crates is used in [`Deno`](https://github.com/denoland/deno) project.
The implementation is tested against WPT test suite.
## Developing
```shell
// checkout git submodules
$ git submodule update --init --recursive// build all targets
$ cargo build --all-targets// test it
$ cargo test
```## Opening a pull request
1. Format code: `rustfmt ./src/lib.rs`
2. Check that `clippy` doesn't produce warnings:
`cargo clippy --all-targets --all-features --release -- -D clippy::all`