2018-03-29 04:31:36 +00:00
|
|
|
#!/bin/bash
|
|
|
|
if [ ! -e SheetJSNS ]; then
|
2021-10-03 01:41:36 +00:00
|
|
|
ns create SheetJSNS --ng
|
2018-03-29 04:31:36 +00:00
|
|
|
cd SheetJSNS
|
2022-04-14 07:27:38 +00:00
|
|
|
npm install --save https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz
|
2021-10-03 01:41:36 +00:00
|
|
|
cd ..
|
2018-03-29 04:31:36 +00:00
|
|
|
fi
|
|
|
|
|
2021-10-03 01:41:36 +00:00
|
|
|
<../../dist/xlsx.full.min.js sed 's/require("fs")/null/g' > SheetJSNS/src/app/xlsx.full.min.js
|
|
|
|
cp nscript.ts SheetJSNS/src/app/app.component.ts
|