mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-10 22:05:55 +00:00
c093cf88ea
Remove the `<12.0.0` restriction re: Node.js version in the `"engines"` settings for all the packages in the monorepo that had that restriction. Add missing `"engines"` settings in `packages/plugins/snark/package.json`. Adjust the Azure Pipelines config to include builds for Node.js v12.x and v13.x. Bump `solc` to `0.4.26` in `dapps/tests/app` and `dapps/tests/contracts`. It was discovered that older versions suffered a fatal `Maximum call stack size exceeded` error when run on Windows with Node.js v12.x or newer. Display a warning re: the bad combo (solc version + Windows + Node version) if it's detected at runtime. Adjust the root `yarn.lock` so that the `sha3` transitive dependency resolves to a newer version that is compatible with Node v13.x.
31 lines
787 B
JSON
31 lines
787 B
JSON
{
|
|
"contracts": ["app/contracts/**"],
|
|
"app": {
|
|
"js/jquery.js": "app/js/_vendor/jquery.min.js",
|
|
"js/bootstrap.js": "app/js/_vendor/bootstrap.min.js",
|
|
"css/app.css": ["app/css/**"],
|
|
"images/": ["app/images/**"],
|
|
"js/app.js": ["app/js/index.js"],
|
|
"js/test.js": ["app/js/_vendor/jquery.min.js", "app/js/_vendor/async.min.js", "app/js/test.js"],
|
|
"index.html": "app/index.html",
|
|
"test.html": "app/test.html",
|
|
"test2.html": "app/test2.html",
|
|
"test3.html": "app/test3.haml"
|
|
},
|
|
"buildDir": "dist/",
|
|
"config": "config/",
|
|
"versions": {
|
|
"solc": "0.4.26"
|
|
},
|
|
"plugins": {
|
|
"embark-dapp-test-service": {}
|
|
},
|
|
"options": {
|
|
"solc": {
|
|
"optimize": true,
|
|
"optimize-runs": 200
|
|
}
|
|
},
|
|
"generationDir": "embarkArtifacts"
|
|
}
|