rollup ui/tournamentSchedule

pull/6912/head
Niklas Fiekas 2020-07-01 09:57:39 +02:00
parent eca994cf13
commit 0d17ecde1a
3 changed files with 12 additions and 6 deletions

View File

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

View File

@ -12,7 +12,7 @@
"author": "Thibault Duplessis",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@build/tsProject": "2.0.0",
"@build/rollupProject": "2.0.0",
"@types/jquery": "^2.0",
"@types/lichess": "2.0.0"
},
@ -21,7 +21,7 @@
"snabbdom": "^0.7.4"
},
"scripts": {
"dev": "gulp dev",
"prod": "gulp prod"
"dev": "rollup --config",
"prod": "rollup --config --config-prod"
}
}

View File

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