UNPKG

385 BJavaScriptView Raw
1#!/usr/bin/env node
2//@ts-check
3'use strict';
4var gulp = require('gulp');
5var linkNpm = require('../src/compiler/build-npm');
6var config = {
7 release: false,
8 debug: false,
9 src: 'src',
10 dist: 'dist',
11 tsconfig: 'tsconfig.json',
12 replace: {
13 APPID: 'test_app_id'
14 }
15}
16gulp.task('npm', () => linkNpm(config));
17
18gulp.task('npm')(console.log);
\No newline at end of file