@tailwindcss/oxide 0.0.0-insiders.458ea284 → 0.0.0-insiders.45cd32e

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/index.d.ts +40 -3
  3. package/index.js +349 -213
  4. package/package.json +55 -27
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Tailwind Labs, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/index.d.ts CHANGED
@@ -1,11 +1,48 @@
1
- /* tslint:disable */
1
+ /* auto-generated by NAPI-RS */
2
2
  /* eslint-disable */
3
+ export declare class Scanner {
4
+ constructor(opts: ScannerOptions)
5
+ scan(): Array<string>
6
+ scanFiles(input: Array<ChangedContent>): Array<string>
7
+ getCandidatesWithPositions(input: ChangedContent): Array<CandidateWithPosition>
8
+ get files(): Array<string>
9
+ get globs(): Array<GlobEntry>
10
+ get normalizedSources(): Array<GlobEntry>
11
+ }
3
12
 
4
- /* auto-generated by NAPI-RS */
13
+ export interface CandidateWithPosition {
14
+ /** The candidate string */
15
+ candidate: string
16
+ /** The position of the candidate inside the content file */
17
+ position: number
18
+ }
5
19
 
6
20
  export interface ChangedContent {
21
+ /** File path to the changed file */
7
22
  file?: string
23
+ /** Contents of the changed file */
8
24
  content?: string
25
+ /** File extension */
9
26
  extension: string
10
27
  }
11
- export function parseCandidateStringsFromFiles(changedContent: Array<ChangedContent>): Array<string>
28
+
29
+ export interface GlobEntry {
30
+ /** Base path of the glob */
31
+ base: string
32
+ /** Glob pattern */
33
+ pattern: string
34
+ }
35
+
36
+ export interface ScannerOptions {
37
+ /** Glob sources */
38
+ sources?: Array<SourceEntry>
39
+ }
40
+
41
+ export interface SourceEntry {
42
+ /** Base path of the glob */
43
+ base: string
44
+ /** Glob pattern */
45
+ pattern: string
46
+ /** Negated flag */
47
+ negated: boolean
48
+ }
package/index.js CHANGED
@@ -1,241 +1,377 @@
1
- const { existsSync, readFileSync } = require('fs')
2
- const { join } = require('path')
1
+ // prettier-ignore
2
+ /* eslint-disable */
3
+ // @ts-nocheck
4
+ /* auto-generated by NAPI-RS */
3
5
 
4
- const { platform, arch } = process
6
+ const { createRequire } = require('node:module')
7
+ require = createRequire(__filename)
5
8
 
9
+ const { readFileSync } = require('node:fs')
6
10
  let nativeBinding = null
7
- let localFileExisted = false
8
- let loadError = null
11
+ const loadErrors = []
9
12
 
10
- function isMusl() {
11
- // For Node 10
12
- if (!process.report || typeof process.report.getReport !== 'function') {
13
- try {
14
- return readFileSync('/usr/bin/ldd', 'utf8').includes('musl')
15
- } catch (e) {
13
+ const isMusl = () => {
14
+ let musl = false
15
+ if (process.platform === 'linux') {
16
+ musl = isMuslFromFilesystem()
17
+ if (musl === null) {
18
+ musl = isMuslFromReport()
19
+ }
20
+ if (musl === null) {
21
+ musl = isMuslFromChildProcess()
22
+ }
23
+ }
24
+ return musl
25
+ }
26
+
27
+ const isFileMusl = (f) => f.includes('libc.musl-') || f.includes('ld-musl-')
28
+
29
+ const isMuslFromFilesystem = () => {
30
+ try {
31
+ return readFileSync('/usr/bin/ldd', 'utf-8').includes('musl')
32
+ } catch {
33
+ return null
34
+ }
35
+ }
36
+
37
+ const isMuslFromReport = () => {
38
+ let report = null
39
+ if (typeof process.report?.getReport === 'function') {
40
+ process.report.excludeNetwork = true
41
+ report = process.report.getReport()
42
+ }
43
+ if (!report) {
44
+ return null
45
+ }
46
+ if (report.header && report.header.glibcVersionRuntime) {
47
+ return false
48
+ }
49
+ if (Array.isArray(report.sharedObjects)) {
50
+ if (report.sharedObjects.some(isFileMusl)) {
16
51
  return true
17
52
  }
18
- } else {
19
- const { glibcVersionRuntime } = process.report.getReport().header
20
- return !glibcVersionRuntime
21
53
  }
54
+ return false
22
55
  }
23
56
 
24
- switch (platform) {
25
- case 'android':
26
- switch (arch) {
27
- case 'arm64':
28
- localFileExisted = existsSync(join(__dirname, 'tailwindcss-oxide.android-arm64.node'))
57
+ const isMuslFromChildProcess = () => {
58
+ try {
59
+ return require('child_process').execSync('ldd --version', { encoding: 'utf8' }).includes('musl')
60
+ } catch (e) {
61
+ // If we reach this case, we don't know if the system is musl or not, so is better to just fallback to false
62
+ return false
63
+ }
64
+ }
65
+
66
+ function requireNative() {
67
+ if (process.env.NAPI_RS_NATIVE_LIBRARY_PATH) {
68
+ try {
69
+ nativeBinding = require(process.env.NAPI_RS_NATIVE_LIBRARY_PATH);
70
+ } catch (err) {
71
+ loadErrors.push(err);
72
+ }
73
+ } else if (process.platform === 'android') {
74
+ if (process.arch === 'arm64') {
75
+ try {
76
+ return require('./tailwindcss-oxide.android-arm64.node')
77
+ } catch (e) {
78
+ loadErrors.push(e)
79
+ }
80
+ try {
81
+ return require('@tailwindcss/oxide-android-arm64')
82
+ } catch (e) {
83
+ loadErrors.push(e)
84
+ }
85
+
86
+ } else if (process.arch === 'arm') {
87
+ try {
88
+ return require('./tailwindcss-oxide.android-arm-eabi.node')
89
+ } catch (e) {
90
+ loadErrors.push(e)
91
+ }
92
+ try {
93
+ return require('@tailwindcss/oxide-android-arm-eabi')
94
+ } catch (e) {
95
+ loadErrors.push(e)
96
+ }
97
+
98
+ } else {
99
+ loadErrors.push(new Error(`Unsupported architecture on Android ${process.arch}`))
100
+ }
101
+ } else if (process.platform === 'win32') {
102
+ if (process.arch === 'x64') {
103
+ try {
104
+ return require('./tailwindcss-oxide.win32-x64-msvc.node')
105
+ } catch (e) {
106
+ loadErrors.push(e)
107
+ }
108
+ try {
109
+ return require('@tailwindcss/oxide-win32-x64-msvc')
110
+ } catch (e) {
111
+ loadErrors.push(e)
112
+ }
113
+
114
+ } else if (process.arch === 'ia32') {
115
+ try {
116
+ return require('./tailwindcss-oxide.win32-ia32-msvc.node')
117
+ } catch (e) {
118
+ loadErrors.push(e)
119
+ }
120
+ try {
121
+ return require('@tailwindcss/oxide-win32-ia32-msvc')
122
+ } catch (e) {
123
+ loadErrors.push(e)
124
+ }
125
+
126
+ } else if (process.arch === 'arm64') {
127
+ try {
128
+ return require('./tailwindcss-oxide.win32-arm64-msvc.node')
129
+ } catch (e) {
130
+ loadErrors.push(e)
131
+ }
132
+ try {
133
+ return require('@tailwindcss/oxide-win32-arm64-msvc')
134
+ } catch (e) {
135
+ loadErrors.push(e)
136
+ }
137
+
138
+ } else {
139
+ loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`))
140
+ }
141
+ } else if (process.platform === 'darwin') {
142
+ try {
143
+ return require('./tailwindcss-oxide.darwin-universal.node')
144
+ } catch (e) {
145
+ loadErrors.push(e)
146
+ }
147
+ try {
148
+ return require('@tailwindcss/oxide-darwin-universal')
149
+ } catch (e) {
150
+ loadErrors.push(e)
151
+ }
152
+
153
+ if (process.arch === 'x64') {
154
+ try {
155
+ return require('./tailwindcss-oxide.darwin-x64.node')
156
+ } catch (e) {
157
+ loadErrors.push(e)
158
+ }
159
+ try {
160
+ return require('@tailwindcss/oxide-darwin-x64')
161
+ } catch (e) {
162
+ loadErrors.push(e)
163
+ }
164
+
165
+ } else if (process.arch === 'arm64') {
166
+ try {
167
+ return require('./tailwindcss-oxide.darwin-arm64.node')
168
+ } catch (e) {
169
+ loadErrors.push(e)
170
+ }
171
+ try {
172
+ return require('@tailwindcss/oxide-darwin-arm64')
173
+ } catch (e) {
174
+ loadErrors.push(e)
175
+ }
176
+
177
+ } else {
178
+ loadErrors.push(new Error(`Unsupported architecture on macOS: ${process.arch}`))
179
+ }
180
+ } else if (process.platform === 'freebsd') {
181
+ if (process.arch === 'x64') {
182
+ try {
183
+ return require('./tailwindcss-oxide.freebsd-x64.node')
184
+ } catch (e) {
185
+ loadErrors.push(e)
186
+ }
187
+ try {
188
+ return require('@tailwindcss/oxide-freebsd-x64')
189
+ } catch (e) {
190
+ loadErrors.push(e)
191
+ }
192
+
193
+ } else if (process.arch === 'arm64') {
194
+ try {
195
+ return require('./tailwindcss-oxide.freebsd-arm64.node')
196
+ } catch (e) {
197
+ loadErrors.push(e)
198
+ }
199
+ try {
200
+ return require('@tailwindcss/oxide-freebsd-arm64')
201
+ } catch (e) {
202
+ loadErrors.push(e)
203
+ }
204
+
205
+ } else {
206
+ loadErrors.push(new Error(`Unsupported architecture on FreeBSD: ${process.arch}`))
207
+ }
208
+ } else if (process.platform === 'linux') {
209
+ if (process.arch === 'x64') {
210
+ if (isMusl()) {
29
211
  try {
30
- if (localFileExisted) {
31
- nativeBinding = require('./tailwindcss-oxide.android-arm64.node')
32
- } else {
33
- nativeBinding = require('@tailwindcss/oxide-android-arm64')
34
- }
35
- } catch (e) {
36
- loadError = e
37
- }
38
- break
39
- case 'arm':
40
- localFileExisted = existsSync(join(__dirname, 'tailwindcss-oxide.android-arm-eabi.node'))
212
+ return require('./tailwindcss-oxide.linux-x64-musl.node')
213
+ } catch (e) {
214
+ loadErrors.push(e)
215
+ }
216
+ try {
217
+ return require('@tailwindcss/oxide-linux-x64-musl')
218
+ } catch (e) {
219
+ loadErrors.push(e)
220
+ }
221
+
222
+ } else {
41
223
  try {
42
- if (localFileExisted) {
43
- nativeBinding = require('./tailwindcss-oxide.android-arm-eabi.node')
44
- } else {
45
- nativeBinding = require('@tailwindcss/oxide-android-arm-eabi')
46
- }
47
- } catch (e) {
48
- loadError = e
49
- }
50
- break
51
- default:
52
- throw new Error(`Unsupported architecture on Android ${arch}`)
53
- }
54
- break
55
- case 'win32':
56
- switch (arch) {
57
- case 'x64':
58
- localFileExisted = existsSync(
59
- join(__dirname, 'tailwindcss-oxide.win32-x64-msvc.node')
60
- )
224
+ return require('./tailwindcss-oxide.linux-x64-gnu.node')
225
+ } catch (e) {
226
+ loadErrors.push(e)
227
+ }
228
+ try {
229
+ return require('@tailwindcss/oxide-linux-x64-gnu')
230
+ } catch (e) {
231
+ loadErrors.push(e)
232
+ }
233
+
234
+ }
235
+ } else if (process.arch === 'arm64') {
236
+ if (isMusl()) {
61
237
  try {
62
- if (localFileExisted) {
63
- nativeBinding = require('./tailwindcss-oxide.win32-x64-msvc.node')
64
- } else {
65
- nativeBinding = require('@tailwindcss/oxide-win32-x64-msvc')
66
- }
67
- } catch (e) {
68
- loadError = e
69
- }
70
- break
71
- case 'ia32':
72
- localFileExisted = existsSync(
73
- join(__dirname, 'tailwindcss-oxide.win32-ia32-msvc.node')
74
- )
238
+ return require('./tailwindcss-oxide.linux-arm64-musl.node')
239
+ } catch (e) {
240
+ loadErrors.push(e)
241
+ }
242
+ try {
243
+ return require('@tailwindcss/oxide-linux-arm64-musl')
244
+ } catch (e) {
245
+ loadErrors.push(e)
246
+ }
247
+
248
+ } else {
75
249
  try {
76
- if (localFileExisted) {
77
- nativeBinding = require('./tailwindcss-oxide.win32-ia32-msvc.node')
78
- } else {
79
- nativeBinding = require('@tailwindcss/oxide-win32-ia32-msvc')
80
- }
81
- } catch (e) {
82
- loadError = e
83
- }
84
- break
85
- case 'arm64':
86
- localFileExisted = existsSync(
87
- join(__dirname, 'tailwindcss-oxide.win32-arm64-msvc.node')
88
- )
250
+ return require('./tailwindcss-oxide.linux-arm64-gnu.node')
251
+ } catch (e) {
252
+ loadErrors.push(e)
253
+ }
254
+ try {
255
+ return require('@tailwindcss/oxide-linux-arm64-gnu')
256
+ } catch (e) {
257
+ loadErrors.push(e)
258
+ }
259
+
260
+ }
261
+ } else if (process.arch === 'arm') {
262
+ if (isMusl()) {
89
263
  try {
90
- if (localFileExisted) {
91
- nativeBinding = require('./tailwindcss-oxide.win32-arm64-msvc.node')
92
- } else {
93
- nativeBinding = require('@tailwindcss/oxide-win32-arm64-msvc')
94
- }
95
- } catch (e) {
96
- loadError = e
97
- }
98
- break
99
- default:
100
- throw new Error(`Unsupported architecture on Windows: ${arch}`)
101
- }
102
- break
103
- case 'darwin':
104
- switch (arch) {
105
- case 'x64':
106
- localFileExisted = existsSync(join(__dirname, 'tailwindcss-oxide.darwin-x64.node'))
264
+ return require('./tailwindcss-oxide.linux-arm-musleabihf.node')
265
+ } catch (e) {
266
+ loadErrors.push(e)
267
+ }
268
+ try {
269
+ return require('@tailwindcss/oxide-linux-arm-musleabihf')
270
+ } catch (e) {
271
+ loadErrors.push(e)
272
+ }
273
+
274
+ } else {
107
275
  try {
108
- if (localFileExisted) {
109
- nativeBinding = require('./tailwindcss-oxide.darwin-x64.node')
110
- } else {
111
- nativeBinding = require('@tailwindcss/oxide-darwin-x64')
112
- }
113
- } catch (e) {
114
- loadError = e
115
- }
116
- break
117
- case 'arm64':
118
- localFileExisted = existsSync(
119
- join(__dirname, 'tailwindcss-oxide.darwin-arm64.node')
120
- )
276
+ return require('./tailwindcss-oxide.linux-arm-gnueabihf.node')
277
+ } catch (e) {
278
+ loadErrors.push(e)
279
+ }
280
+ try {
281
+ return require('@tailwindcss/oxide-linux-arm-gnueabihf')
282
+ } catch (e) {
283
+ loadErrors.push(e)
284
+ }
285
+
286
+ }
287
+ } else if (process.arch === 'riscv64') {
288
+ if (isMusl()) {
121
289
  try {
122
- if (localFileExisted) {
123
- nativeBinding = require('./tailwindcss-oxide.darwin-arm64.node')
124
- } else {
125
- nativeBinding = require('@tailwindcss/oxide-darwin-arm64')
126
- }
127
- } catch (e) {
128
- loadError = e
129
- }
130
- break
131
- default:
132
- throw new Error(`Unsupported architecture on macOS: ${arch}`)
290
+ return require('./tailwindcss-oxide.linux-riscv64-musl.node')
291
+ } catch (e) {
292
+ loadErrors.push(e)
293
+ }
294
+ try {
295
+ return require('@tailwindcss/oxide-linux-riscv64-musl')
296
+ } catch (e) {
297
+ loadErrors.push(e)
298
+ }
299
+
300
+ } else {
301
+ try {
302
+ return require('./tailwindcss-oxide.linux-riscv64-gnu.node')
303
+ } catch (e) {
304
+ loadErrors.push(e)
305
+ }
306
+ try {
307
+ return require('@tailwindcss/oxide-linux-riscv64-gnu')
308
+ } catch (e) {
309
+ loadErrors.push(e)
310
+ }
311
+
312
+ }
313
+ } else if (process.arch === 'ppc64') {
314
+ try {
315
+ return require('./tailwindcss-oxide.linux-ppc64-gnu.node')
316
+ } catch (e) {
317
+ loadErrors.push(e)
318
+ }
319
+ try {
320
+ return require('@tailwindcss/oxide-linux-ppc64-gnu')
321
+ } catch (e) {
322
+ loadErrors.push(e)
323
+ }
324
+
325
+ } else if (process.arch === 's390x') {
326
+ try {
327
+ return require('./tailwindcss-oxide.linux-s390x-gnu.node')
328
+ } catch (e) {
329
+ loadErrors.push(e)
330
+ }
331
+ try {
332
+ return require('@tailwindcss/oxide-linux-s390x-gnu')
333
+ } catch (e) {
334
+ loadErrors.push(e)
335
+ }
336
+
337
+ } else {
338
+ loadErrors.push(new Error(`Unsupported architecture on Linux: ${process.arch}`))
133
339
  }
134
- break
135
- case 'freebsd':
136
- if (arch !== 'x64') {
137
- throw new Error(`Unsupported architecture on FreeBSD: ${arch}`)
340
+ } else {
341
+ loadErrors.push(new Error(`Unsupported OS: ${process.platform}, architecture: ${process.arch}`))
342
+ }
343
+ }
344
+
345
+ nativeBinding = requireNative()
346
+
347
+ if (!nativeBinding || process.env.NAPI_RS_FORCE_WASI) {
348
+ try {
349
+ nativeBinding = require('./tailwindcss-oxide.wasi.cjs')
350
+ } catch (err) {
351
+ if (process.env.NAPI_RS_FORCE_WASI) {
352
+ loadErrors.push(err)
138
353
  }
139
- localFileExisted = existsSync(join(__dirname, 'tailwindcss-oxide.freebsd-x64.node'))
354
+ }
355
+ if (!nativeBinding) {
140
356
  try {
141
- if (localFileExisted) {
142
- nativeBinding = require('./tailwindcss-oxide.freebsd-x64.node')
143
- } else {
144
- nativeBinding = require('@tailwindcss/oxide-freebsd-x64')
357
+ nativeBinding = require('@tailwindcss/oxide-wasm32-wasi')
358
+ } catch (err) {
359
+ if (process.env.NAPI_RS_FORCE_WASI) {
360
+ loadErrors.push(err)
145
361
  }
146
- } catch (e) {
147
- loadError = e
148
- }
149
- break
150
- case 'linux':
151
- switch (arch) {
152
- case 'x64':
153
- if (isMusl()) {
154
- localFileExisted = existsSync(
155
- join(__dirname, 'tailwindcss-oxide.linux-x64-musl.node')
156
- )
157
- try {
158
- if (localFileExisted) {
159
- nativeBinding = require('./tailwindcss-oxide.linux-x64-musl.node')
160
- } else {
161
- nativeBinding = require('@tailwindcss/oxide-linux-x64-musl')
162
- }
163
- } catch (e) {
164
- loadError = e
165
- }
166
- } else {
167
- localFileExisted = existsSync(
168
- join(__dirname, 'tailwindcss-oxide.linux-x64-gnu.node')
169
- )
170
- try {
171
- if (localFileExisted) {
172
- nativeBinding = require('./tailwindcss-oxide.linux-x64-gnu.node')
173
- } else {
174
- nativeBinding = require('@tailwindcss/oxide-linux-x64-gnu')
175
- }
176
- } catch (e) {
177
- loadError = e
178
- }
179
- }
180
- break
181
- case 'arm64':
182
- if (isMusl()) {
183
- localFileExisted = existsSync(
184
- join(__dirname, 'tailwindcss-oxide.linux-arm64-musl.node')
185
- )
186
- try {
187
- if (localFileExisted) {
188
- nativeBinding = require('./tailwindcss-oxide.linux-arm64-musl.node')
189
- } else {
190
- nativeBinding = require('@tailwindcss/oxide-linux-arm64-musl')
191
- }
192
- } catch (e) {
193
- loadError = e
194
- }
195
- } else {
196
- localFileExisted = existsSync(
197
- join(__dirname, 'tailwindcss-oxide.linux-arm64-gnu.node')
198
- )
199
- try {
200
- if (localFileExisted) {
201
- nativeBinding = require('./tailwindcss-oxide.linux-arm64-gnu.node')
202
- } else {
203
- nativeBinding = require('@tailwindcss/oxide-linux-arm64-gnu')
204
- }
205
- } catch (e) {
206
- loadError = e
207
- }
208
- }
209
- break
210
- case 'arm':
211
- localFileExisted = existsSync(
212
- join(__dirname, 'tailwindcss-oxide.linux-arm-gnueabihf.node')
213
- )
214
- try {
215
- if (localFileExisted) {
216
- nativeBinding = require('./tailwindcss-oxide.linux-arm-gnueabihf.node')
217
- } else {
218
- nativeBinding = require('@tailwindcss/oxide-linux-arm-gnueabihf')
219
- }
220
- } catch (e) {
221
- loadError = e
222
- }
223
- break
224
- default:
225
- throw new Error(`Unsupported architecture on Linux: ${arch}`)
226
362
  }
227
- break
228
- default:
229
- throw new Error(`Unsupported OS: ${platform}, architecture: ${arch}`)
363
+ }
230
364
  }
231
365
 
232
366
  if (!nativeBinding) {
233
- if (loadError) {
234
- throw loadError
367
+ if (loadErrors.length > 0) {
368
+ // TODO Link to documentation with potential fixes
369
+ // - The package owner could build/publish bindings for this arch
370
+ // - The user may need to bundle the correct files
371
+ // - The user may need to re-install node_modules to get new packages
372
+ throw new Error('Failed to load native binding', { cause: loadErrors })
235
373
  }
236
374
  throw new Error(`Failed to load native binding`)
237
375
  }
238
376
 
239
- const { parseCandidateStringsFromFiles } = nativeBinding
240
-
241
- module.exports.parseCandidateStringsFromFiles = parseCandidateStringsFromFiles
377
+ module.exports.Scanner = nativeBinding.Scanner
package/package.json CHANGED
@@ -1,25 +1,41 @@
1
1
  {
2
2
  "name": "@tailwindcss/oxide",
3
- "version": "0.0.0-insiders.458ea284",
3
+ "version": "0.0.0-insiders.45cd32e",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/tailwindlabs/tailwindcss.git",
7
+ "directory": "crates/node"
8
+ },
4
9
  "main": "index.js",
5
10
  "types": "index.d.ts",
6
11
  "napi": {
7
- "name": "tailwindcss-oxide",
8
- "triples": {
9
- "additional": [
10
- "aarch64-apple-darwin",
11
- "aarch64-unknown-linux-gnu",
12
- "aarch64-unknown-linux-musl",
13
- "armv7-unknown-linux-gnueabihf",
14
- "x86_64-unknown-linux-musl",
15
- "x86_64-unknown-freebsd",
16
- "i686-pc-windows-msvc"
17
- ]
12
+ "binaryName": "tailwindcss-oxide",
13
+ "packageName": "@tailwindcss/oxide",
14
+ "targets": [
15
+ "armv7-linux-androideabi",
16
+ "aarch64-linux-android",
17
+ "aarch64-apple-darwin",
18
+ "aarch64-unknown-linux-gnu",
19
+ "aarch64-unknown-linux-musl",
20
+ "armv7-unknown-linux-gnueabihf",
21
+ "x86_64-unknown-linux-musl",
22
+ "x86_64-unknown-freebsd",
23
+ "i686-pc-windows-msvc",
24
+ "aarch64-pc-windows-msvc",
25
+ "wasm32-wasip1-threads"
26
+ ],
27
+ "wasm": {
28
+ "initialMemory": 16384,
29
+ "browser": {
30
+ "fs": true
31
+ }
18
32
  }
19
33
  },
20
34
  "license": "MIT",
21
35
  "devDependencies": {
22
- "@napi-rs/cli": "^2.13.0"
36
+ "@napi-rs/cli": "^3.0.0-alpha.78",
37
+ "@napi-rs/wasm-runtime": "^0.2.9",
38
+ "emnapi": "1.4.3"
23
39
  },
24
40
  "engines": {
25
41
  "node": ">= 10"
@@ -28,21 +44,33 @@
28
44
  "index.js",
29
45
  "index.d.ts"
30
46
  ],
47
+ "publishConfig": {
48
+ "provenance": true,
49
+ "access": "public"
50
+ },
51
+ "optionalDependencies": {
52
+ "@tailwindcss/oxide-darwin-arm64": "0.0.0-insiders.45cd32e",
53
+ "@tailwindcss/oxide-freebsd-x64": "0.0.0-insiders.45cd32e",
54
+ "@tailwindcss/oxide-darwin-x64": "0.0.0-insiders.45cd32e",
55
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "0.0.0-insiders.45cd32e",
56
+ "@tailwindcss/oxide-linux-arm64-gnu": "0.0.0-insiders.45cd32e",
57
+ "@tailwindcss/oxide-linux-arm64-musl": "0.0.0-insiders.45cd32e",
58
+ "@tailwindcss/oxide-linux-x64-musl": "0.0.0-insiders.45cd32e",
59
+ "@tailwindcss/oxide-linux-x64-gnu": "0.0.0-insiders.45cd32e",
60
+ "@tailwindcss/oxide-win32-arm64-msvc": "0.0.0-insiders.45cd32e",
61
+ "@tailwindcss/oxide-wasm32-wasi": "0.0.0-insiders.45cd32e",
62
+ "@tailwindcss/oxide-win32-x64-msvc": "0.0.0-insiders.45cd32e",
63
+ "@tailwindcss/oxide-android-arm64": "0.0.0-insiders.45cd32e"
64
+ },
31
65
  "scripts": {
32
66
  "artifacts": "napi artifacts",
33
- "build": "napi build --platform --release",
34
- "build:debug": "napi build --platform",
67
+ "build": "pnpm run build:platform && pnpm run build:wasm",
68
+ "build:platform": "napi build --platform --release --no-const-enum",
69
+ "postbuild:platform": "node ./scripts/move-artifacts.mjs",
70
+ "build:wasm": "napi build --release --target wasm32-wasip1-threads --no-const-enum",
71
+ "postbuild:wasm": "node ./scripts/move-artifacts.mjs",
72
+ "dev": "cargo watch --quiet --shell 'npm run build'",
73
+ "build:debug": "napi build --platform --no-const-enum",
35
74
  "version": "napi version"
36
- },
37
- "optionalDependencies": {
38
- "@tailwindcss/oxide-darwin-arm64": "0.0.0-insiders.458ea284",
39
- "@tailwindcss/oxide-darwin-x64": "0.0.0-insiders.458ea284",
40
- "@tailwindcss/oxide-freebsd-x64": "0.0.0-insiders.458ea284",
41
- "@tailwindcss/oxide-linux-arm-gnueabihf": "0.0.0-insiders.458ea284",
42
- "@tailwindcss/oxide-linux-arm64-gnu": "0.0.0-insiders.458ea284",
43
- "@tailwindcss/oxide-linux-arm64-musl": "0.0.0-insiders.458ea284",
44
- "@tailwindcss/oxide-linux-x64-gnu": "0.0.0-insiders.458ea284",
45
- "@tailwindcss/oxide-linux-x64-musl": "0.0.0-insiders.458ea284",
46
- "@tailwindcss/oxide-win32-x64-msvc": "0.0.0-insiders.458ea284"
47
75
  }
48
- }
76
+ }