UNPKG

397 BJavaScriptView Raw
1#!/usr/bin/env node
2//@ts-check
3'use strict';
4var gulp = require('gulp');
5var compileJson = require('../src/compiler/compile-json');
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('json', () => compileJson(config));
17
18gulp.task('json')(console.log);
\No newline at end of file