Skip to content

Remove ia32 support on dart 3.8 #374

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions npm/android-ia32/README.md

This file was deleted.

20 changes: 0 additions & 20 deletions npm/android-ia32/package.json

This file was deleted.

3 changes: 0 additions & 3 deletions npm/linux-ia32/README.md

This file was deleted.

20 changes: 0 additions & 20 deletions npm/linux-ia32/package.json

This file was deleted.

3 changes: 0 additions & 3 deletions npm/linux-musl-ia32/README.md

This file was deleted.

20 changes: 0 additions & 20 deletions npm/linux-musl-ia32/package.json

This file was deleted.

3 changes: 0 additions & 3 deletions npm/win32-ia32/README.md

This file was deleted.

20 changes: 0 additions & 20 deletions npm/win32-ia32/package.json

This file was deleted.

4 changes: 0 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,23 +40,19 @@
"optionalDependencies": {
"sass-embedded-android-arm": "1.89.0",
"sass-embedded-android-arm64": "1.89.0",
"sass-embedded-android-ia32": "1.89.0",
"sass-embedded-android-riscv64": "1.89.0",
"sass-embedded-android-x64": "1.89.0",
"sass-embedded-darwin-arm64": "1.89.0",
"sass-embedded-darwin-x64": "1.89.0",
"sass-embedded-linux-arm": "1.89.0",
"sass-embedded-linux-arm64": "1.89.0",
"sass-embedded-linux-ia32": "1.89.0",
"sass-embedded-linux-riscv64": "1.89.0",
"sass-embedded-linux-x64": "1.89.0",
"sass-embedded-linux-musl-arm": "1.89.0",
"sass-embedded-linux-musl-arm64": "1.89.0",
"sass-embedded-linux-musl-ia32": "1.89.0",
"sass-embedded-linux-musl-riscv64": "1.89.0",
"sass-embedded-linux-musl-x64": "1.89.0",
"sass-embedded-win32-arm64": "1.89.0",
"sass-embedded-win32-ia32": "1.89.0",
"sass-embedded-win32-x64": "1.89.0"
},
"dependencies": {
Expand Down
6 changes: 1 addition & 5 deletions tool/prepare-optional-release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export type DartPlatform =
| 'linux-musl'
| 'macos'
| 'windows';
export type DartArch = 'ia32' | 'x64' | 'arm' | 'arm64' | 'riscv64';
export type DartArch = 'x64' | 'arm' | 'arm64' | 'riscv64';

const argv = yargs(process.argv.slice(2))
.option('package', {
Expand Down Expand Up @@ -51,10 +51,6 @@ export function nodePlatformToDartPlatform(platform: string): DartPlatform {
// Sass Embedded.
export function nodeArchToDartArch(arch: string): DartArch {
switch (arch) {
case 'ia32':
return 'ia32';
case 'x86':
return 'ia32';
case 'x64':
return 'x64';
case 'arm':
Expand Down