- loaderConfigurator now renamed to pages, with configurator section supporting both v2 and v3 Cust
7 lines
186 B
Bash
Executable File
7 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ -d "./dist" ] || mkdir ./dist
|
|
cp -Rf ./src/*.html ./dist/
|
|
# README_HTML=`pandoc -f gfm -t html5 ../README.md`
|
|
tsc ./src/main.ts --outDir ./dist/ -lib es2015,dom -t es2015
|