mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
This PR bumps all napi related dependencies to their latest version. Napi 3 has by now officially been released but since we've been using the preview already, there aren't many changes. One thing that ChatGPT found is that `--no-const-enum` is the default behavior now (see default value [in this table](https://napi.rs/docs/cli/build#options)) ## Test plan - `pnpm install && pnpm build` - `cd crates/node/npm/wasm32-wasi` - `pnpm install --ignore-workspace` (This is necessary for some reason or the bundled dependencies won't work, I have no clue why it's not necessary on CI) - `pnpm pack` - Install dependency in a new npm package with a simple config like this: ```js import { Scanner } from "@tailwindcss/oxide-wasm32-wasi"; let scanner = new Scanner({ sources: [ { base: "/Users/philipp/dev/tailwindcss/packages/@tailwindcss-postcss/src/fixtures/example-project", pattern: "**/*", negated: false, }, ], }); console.log(scanner.scan()); ``` - <img width="904" height="494" alt="CleanShot 2025-09-19 at 14 53 52@2x" src="https://github.com/user-attachments/assets/93e32c19-6db4-4d00-9fdb-a6fde22fc69c" /> I also tested the CI build to make sure the `bundledDependencies` are properly added.
39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
import fs from 'node:fs/promises'
|
|
import path from 'node:path'
|
|
import url from 'node:url'
|
|
|
|
const __dirname = path.dirname(url.fileURLToPath(import.meta.url))
|
|
let root = path.resolve(__dirname, '..')
|
|
const tailwindcssOxideRoot = path.join(root)
|
|
|
|
// Move napi artifacts into sub packages
|
|
for (let file of await fs.readdir(tailwindcssOxideRoot)) {
|
|
if (file.startsWith('tailwindcss-oxide.') && file.endsWith('.node')) {
|
|
let target = file.split('.')[1]
|
|
await fs.cp(
|
|
path.join(tailwindcssOxideRoot, file),
|
|
path.join(tailwindcssOxideRoot, 'npm', target, file),
|
|
)
|
|
console.log(`Moved ${file} to npm/${target}`)
|
|
}
|
|
}
|
|
|
|
// Move napi wasm artifacts into sub package
|
|
let wasmArtifacts = {
|
|
'tailwindcss-oxide.debug.wasm': 'tailwindcss-oxide.wasm32-wasi.debug.wasm',
|
|
'tailwindcss-oxide.wasm': 'tailwindcss-oxide.wasm32-wasi.wasm',
|
|
'tailwindcss-oxide.wasi-browser.js': 'tailwindcss-oxide.wasi-browser.js',
|
|
'tailwindcss-oxide.wasi.cjs': 'tailwindcss-oxide.wasi.cjs',
|
|
'wasi-worker-browser.mjs': 'wasi-worker-browser.mjs',
|
|
'wasi-worker.mjs': 'wasi-worker.mjs',
|
|
}
|
|
for (let file of await fs.readdir(tailwindcssOxideRoot)) {
|
|
if (!wasmArtifacts[file]) continue
|
|
await fs.cp(
|
|
path.join(tailwindcssOxideRoot, file),
|
|
path.join(tailwindcssOxideRoot, 'npm', 'wasm32-wasi', wasmArtifacts[file]),
|
|
)
|
|
console.log(`Moved ${file} to npm/wasm32-wasi`)
|
|
}
|
|
|