mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
bc51eca700
`deno bundle` now produces: ``` error: ⚠️ `deno bundle` was removed in Deno 2. See the Deno 1.x to 2.x Migration Guide for migration instructions: https://docs.deno.com/runtime/manual/advanced/migrate_deprecations ``` `deno bundle --help` now produces: ``` ⚠️ `deno bundle` was removed in Deno 2. See the Deno 1.x to 2.x Migration Guide for migration instructions: https://docs.deno.com/runtime/manual/advanced/migrate_deprecations Usage: deno bundle [OPTIONS] Options: -q, --quiet Suppress diagnostic output --unstable Enable all unstable features and APIs. Instead of using this flag, consider enabling individual unstable features To view the list of individual unstable feature flags, run this command again with --help=unstable ```
22 lines
381 B
Rust
22 lines
381 B
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
pub mod bench;
|
|
pub mod check;
|
|
pub mod clean;
|
|
pub mod compile;
|
|
pub mod coverage;
|
|
pub mod doc;
|
|
pub mod fmt;
|
|
pub mod info;
|
|
pub mod init;
|
|
pub mod installer;
|
|
pub mod jupyter;
|
|
pub mod lint;
|
|
pub mod registry;
|
|
pub mod repl;
|
|
pub mod run;
|
|
pub mod serve;
|
|
pub mod task;
|
|
pub mod test;
|
|
pub mod upgrade;
|
|
pub mod vendor;
|