rollup ui/speech

pull/6912/head
Niklas Fiekas 2020-07-01 10:25:16 +02:00
parent 15d2e9c2c8
commit 5f15b231dc
3 changed files with 14 additions and 8 deletions

View File

@ -1,3 +0,0 @@
const lilaGulp = require('@build/tsProject');
lilaGulp('LichessSpeech', 'lichess.speech', __dirname);

View File

@ -14,12 +14,12 @@
],
"author": "Thibault Duplessis",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "gulp dev",
"prod": "gulp prod"
},
"devDependencies": {
"@build/tsProject": "2.0.0",
"@build/rollupProject": "2.0.0",
"@types/lichess": "2.0.0"
},
"scripts": {
"dev": "rollup --config",
"prod": "rollup --config --config-prod"
}
}

View File

@ -0,0 +1,9 @@
import { rollupProject } from '@build/rollupProject';
export default rollupProject({
main: {
name: 'LichessSpeech',
input: 'src/main.ts',
output: 'lichess.speech',
},
});