I’m trying to run the quill editor.
I’m receiving error when trying to debug my node application using the npm start command under Windows.
Error:
'[[' is not recognized as an internal or external command, operable program or batch file.
This is a fragment of package.json
"scripts": {
"build": "./scripts/build production",
"lint": "run-s lint:*",
"lint:eslint": "eslint .",
"lint:tsc": "tsc --noEmit --skipLibCheck",
"start": "[[ -z "$npm_package_config_ports_webpack" ]] && webpack-dev-server || webpack-dev-server --port $npm_package_config_ports_webpack",
"test": "run-s test:*",
"test:unit": "vitest --config test/unit/vitest.config.ts",
"test:fuzz": "vitest --config test/fuzz/vitest.config.ts",
"test:e2e": "playwright test"
},
"keywords": [
"quill",
"editor",
"rich text",
"wysiwyg",
"operational transformation",
"ot",
"framework"
],
"engines": {
"npm": ">=8.2.3"
},
"engineStrict": true
}
New contributor
ememsDev is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
2