mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 15:41:45 +00:00
- Replaced the test script to run test-providers.js. - Updated the build script to run build-simple.js. - Added new scripts for development: dev, dev:build, watch, watch:dev, dev:auto, and auto. - Updated start script to build and then run the dev server. - Added new devDependencies: concurrently, cors, express, and nodemon.
17 lines
421 B
JSON
17 lines
421 B
JSON
{
|
|
"watch": ["providers"],
|
|
"ext": "ts",
|
|
"ignore": ["node_modules", "dist", "*.test.ts"],
|
|
"exec": "node build-simple.js",
|
|
"env": {
|
|
"NODE_ENV": "development"
|
|
},
|
|
"delay": "1000",
|
|
"verbose": true,
|
|
"colours": true,
|
|
"events": {
|
|
"restart": "echo '\n🔄 File changes detected, rebuilding providers...\n'",
|
|
"crash": "echo '\n❌ Build crashed, waiting for file changes...\n'"
|
|
}
|
|
}
|