First step towards v3: AL can now be compiled with webpack

This commit is contained in:
Thomas Boch
2020-07-17 12:55:45 +02:00
parent 574c63c918
commit 52d8391813
45 changed files with 2889 additions and 1530 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"scripts": {
"build": "webpack",
"serve": "webpack-dev-server"
},
"devDependencies": {
"@fxpineau/healpix": "^0.1.3",
"@wasm-tool/wasm-pack-plugin": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"text-encoding": "^0.7.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"n": "^6.6.0"
}
}