Replace packer with rollup

This commit is contained in:
Kitson Kelly 2018-07-22 03:14:52 +02:00 committed by Bert Belder
parent dff5c16e85
commit 845f7215db
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461
9 changed files with 482 additions and 3318 deletions

7
js/plugins.d.ts vendored Normal file
View file

@ -0,0 +1,7 @@
// This allows TypeScript to resolve any modules that end with `!string`
// as there is a rollup plugin that will take any mids ending with `!string`
// and return them as a string to rollup for inlining
declare module "*!string" {
const value: string;
export default value;
}