Skip to content

Commit

Permalink
iiif
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj committed Nov 15, 2023
1 parent 396a5c2 commit c7dbc5b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,8 @@ jobs:
- name: Build nextest
timeout-minutes: 120
run: |
cargo tp-pre-test
# cargo tp-pre-test
cargo --version
- name: Run nextest
timeout-minutes: 120
run: |
Expand Down Expand Up @@ -895,7 +896,8 @@ jobs:
- name: Build nextest
timeout-minutes: 120
run: |
cargo tp-pre-test
# cargo tp-pre-test
cargo --version
- name: Run nextest (Mac)
timeout-minutes: 120
Expand Down
12 changes: 4 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ lto = "off"
[workspace.dependencies]
async-recursion = "1.0.2"
# Keep consistent with preset_env_base through swc_core
browserslist-rs = { version = "0.12.2" }
browserslist-rs = { version = "0.13.0" }

mdxjs = "0.1.19"
modularize_imports = { version = "0.55.0" }
Expand Down
9 changes: 5 additions & 4 deletions crates/turbopack-core/src/environment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,13 @@ impl Environment {
Ok(match this.execution {
ExecutionEnvironment::NodeJsBuildTime(node_env, ..)
| ExecutionEnvironment::NodeJsLambda(node_env) => node_env.runtime_versions(),
ExecutionEnvironment::Browser(browser_env) => {
Vc::cell(Versions::parse_versions(browserslist::resolve(
ExecutionEnvironment::Browser(browser_env) => Vc::cell(Versions::parse_versions(
browserslist::resolve(
browser_env.await?.browserslist_query.split(','),
&browserslist::Opts::new(),
)?)?)
}
)
.context("")?,
)?),
ExecutionEnvironment::EdgeWorker(_) => todo!(),
ExecutionEnvironment::Custom(_) => todo!(),
})
Expand Down
1 change: 1 addition & 0 deletions crates/turbopack-css/src/references/url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ use turbopack_core::{
};
use turbopack_ecmascript::resolve::url_resolve;

//
use crate::{
code_gen::{CodeGenerateable, CodeGeneration},
create_visitor,
Expand Down

0 comments on commit c7dbc5b

Please sign in to comment.