Update build logic

This commit is contained in:
Nick Gerleman
2022-12-22 03:06:42 -08:00
parent bf3af7eb90
commit d2effccfee
35 changed files with 1379 additions and 1874 deletions

View File

@@ -7,24 +7,28 @@
"type": "git",
"url": "git@github.com:facebook/yoga.git"
},
"main": "./dist/index",
"main": "./dist/index.asm.js",
"exports": {
".": {
"default": "./dist/index.asm.js",
"browser": "./dist/index.wasm.js",
"node": "./dist/index.wasm.js",
"react-native": "./dist/index.asm.js"
}
},
"scripts": {
"is-monolithic": "test \"$(basename \"$(pwd)\")\" = javascript",
"copy-sources": "! npm -s run is-monolithic || (rsync -r --checksum --delete ../yoga/ sources/yoga/)",
"build": "npm run copy-sources && make && npm run build:js",
"test": "time mocha --expose-gc -r tests/tools.js tests/Facebook.Yoga/**/*.js",
"benchmark": "npm run build && node tests/run-bench $(find tests/Benchmarks -name '*.js')",
"build:js": "babel sources --out-dir dist && flow-copy-source sources dist"
"build:js": "babel sources --source-maps --out-dir dist && flow-copy-source sources dist"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-replace-require": "^0.0.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^4.0.0",
"@babel/cli": "^7.20.7",
"@babel/core":"^7.20.7",
"@babel/plugin-transform-flow-strip-types": "^7.19.0",
"@babel/preset-env": "^7.20.2",
"flow-copy-source": "^2.0.7",
"mocha": "^3.2.0"
}