integration Directus cms

This commit is contained in:
2025-06-04 00:55:56 +02:00
parent 3168826fa8
commit 057d427b5b
200 changed files with 15289 additions and 50 deletions

3
node_modules/esbuild-windows-64/README.md generated vendored Normal file
View File

@@ -0,0 +1,3 @@
# esbuild
This is the Windows 64-bit binary for esbuild, a JavaScript bundler and minifier. See https://github.com/evanw/esbuild for details.

14
node_modules/esbuild-windows-64/bin/esbuild generated vendored Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env node
// Unfortunately even though npm shims "bin" commands on Windows with auto-
// generated forwarding scripts, it doesn't strip the ".exe" from the file name
// first. So it's possible to publish executables via npm on all platforms
// except Windows. I consider this a npm bug.
//
// My workaround is to add this script as another layer of indirection. It'll
// be slower because node has to boot up just to shell out to the actual exe,
// but Windows is somewhat of a second-class platform to npm so it's the best
// I can do I think.
const esbuild_exe = require.resolve('esbuild-windows-64/esbuild.exe');
const child_process = require('child_process');
child_process.spawnSync(esbuild_exe, process.argv.slice(2), { stdio: 'inherit' });

BIN
node_modules/esbuild-windows-64/esbuild.exe generated vendored Normal file

Binary file not shown.

17
node_modules/esbuild-windows-64/package.json generated vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "esbuild-windows-64",
"version": "0.15.18",
"description": "The Windows 64-bit binary for esbuild, a JavaScript bundler.",
"repository": "https://github.com/evanw/esbuild",
"license": "MIT",
"preferUnplugged": true,
"engines": {
"node": ">=12"
},
"os": [
"win32"
],
"cpu": [
"x64"
]
}