Я пытаюсь запустить команду npm run build: lambda, но она продолжает выдавать синтаксическую ошибку:
****:git user$ npm run build:lambda
> git@1.0.0 build:lambda /Users/****/git
> netlify-lambda build functions-active
netlify-lambda: Building functions
{ [SyntaxError: Expected "'", "'''", "+", "-", "[", "\"", "\"\"\"", "_", "false", "true", "{", [ \t] or [0-9] but "\u201C" found.]
message:
'Expected "\'", "\'\'\'", "+", "-", "[", "\\"", "\\"\\"\\"", "_", "false", "true", "{", [ \\t] or [0-9] but "\\u201C" found.',
expected:
[ { type: 'literal', value: '\'', description: '"\'"' },
{ type: 'literal', value: '\'\'\'', description: '"\'\'\'"' },
{ type: 'literal', value: '+', description: '"+"' },
{ type: 'literal', value: '-', description: '"-"' },
{ type: 'literal', value: '[', description: '"["' },
{ type: 'literal', value: '"', description: '"\\""' },
{ type: 'literal', value: '"""', description: '"\\"\\"\\""' },
{ type: 'literal', value: '_', description: '"_"' },
{ type: 'literal', value: 'false', description: '"false"' },
{ type: 'literal', value: 'true', description: '"true"' },
{ type: 'literal', value: '{', description: '"{"' },
{ type: 'class', value: '[ \\t]', description: '[ \\t]' },
{ type: 'class', value: '[0-9]', description: '[0-9]' } ],
found: '“',
offset: 22,
line: 2,
column: 15,
enter code here`
У меня netlify.toml, настроенный с:
[build]
functions = “lambda“
И сконфигурируйте package.json с:
"scripts": {
"start:lambda": "netlify-lambda serve src/lambda",
"build:lambda": "netlify-lambda build functions-active"
},
Кажется, я упускаю что-то фундаментальное, но не могу понять, что .. Любая помощь?Спасибо!