Landerfine l'écarlate
Landerfine l'écarlate
DDeno
Created by werthan on 2/27/2025 in #help
Deno Compile Can't Find Node Module
- https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L11252 it should be here : / with deno v2.2.2/v2.2.3 I will try some stuff :cookie_deno:
7 replies
DDeno
Created by werthan on 2/27/2025 in #help
Deno Compile Can't Find Node Module
deno ./test_\src\test\easy.ts --include
deno ./test_\src\test\easy.ts --include
{
"workspace":["./core", "./meta", "./schema", "./shell", "./test_"],
"nodeModulesDir":"auto",
"imports": {
"@zxcvbn-ts/core": "npm:@zxcvbn-ts/core@^3.0.4",
"@zxcvbn-ts/language-common": "npm:@zxcvbn-ts/language-common@^3.0.4",
"@zxcvbn-ts/language-en": "npm:@zxcvbn-ts/language-en@^3.0.2",
"fast-fuzzy": "npm:fast-fuzzy@^1.12.0",
"node-interval-tree": "npm:node-interval-tree@^2.1.2",
"randexp": "npm:randexp@^0.5.3",
"@donedeal0/superdiff": "npm:@donedeal0/superdiff@^3.1.2",
"@types/lodash": "npm:@types/lodash@^4.17.16",
"@types/luxon": "npm:@types/luxon@^3.4.2",

"deepdash": "npm:deepdash@^5.3.9",
"lodash": "npm:lodash@^4.17.21",
"luxon": "npm:luxon@^3.5.0",
"typescript": "npm:typescript@^5.8.2",
"zod": "npm:zod@^3.24.2"
}
}
{
"workspace":["./core", "./meta", "./schema", "./shell", "./test_"],
"nodeModulesDir":"auto",
"imports": {
"@zxcvbn-ts/core": "npm:@zxcvbn-ts/core@^3.0.4",
"@zxcvbn-ts/language-common": "npm:@zxcvbn-ts/language-common@^3.0.4",
"@zxcvbn-ts/language-en": "npm:@zxcvbn-ts/language-en@^3.0.2",
"fast-fuzzy": "npm:fast-fuzzy@^1.12.0",
"node-interval-tree": "npm:node-interval-tree@^2.1.2",
"randexp": "npm:randexp@^0.5.3",
"@donedeal0/superdiff": "npm:@donedeal0/superdiff@^3.1.2",
"@types/lodash": "npm:@types/lodash@^4.17.16",
"@types/luxon": "npm:@types/luxon@^3.4.2",

"deepdash": "npm:deepdash@^5.3.9",
"lodash": "npm:lodash@^4.17.21",
"luxon": "npm:luxon@^3.5.0",
"typescript": "npm:typescript@^5.8.2",
"zod": "npm:zod@^3.24.2"
}
}
; in the file
import { eq } from "lodash";
import { eq } from "lodash";
cause
error: Uncaught SyntaxError: The requested module 'lodash' does not provide an export named 'eq'
import { eq } from "lodash";
^
at <anonymous> (file:///D:/WORKBRENCH/TS/LIB_TS/DENO/king_ts/test_/src/utils/test.ts:3:10)
error: Uncaught SyntaxError: The requested module 'lodash' does not provide an export named 'eq'
import { eq } from "lodash";
^
at <anonymous> (file:///D:/WORKBRENCH/TS/LIB_TS/DENO/king_ts/test_/src/utils/test.ts:3:10)
any ideas ?
7 replies