development-assert-templ
TypeScript icon, indicating that this package has built-in type declarations

2.0.2 • Public • Published

packaged development-assert-templ

This repo is for distribution on npm. The source for this module is in the main repo. Please file issues and pull requests against that repo.

This package is template assert (html) tasks for development tools.

Install

You can install this package either with npm.

npm

 
npm install development-assert-templ
 

You can import modules:

import module

import * as gulp from 'gulp';
import  { Development } from 'development-tool';
import { IWebTaskOption } from 'development-tool-web';
 

Create development tool

Development.create(gulp, __dirname, {
    tasks:[
        <IWebTaskOption>{
            src: 'src',
            //testSrc: '...',
            //e2eSrc: '...',
            //watchSrc: '...'
            dist: 'dist/development',
            // buildDist:'build path',
            releaseDist: 'dist/production',
            // depolyDist: 'depoly path'
            asserts:{
                templ: {
                    src: 'src/**/*.tpl.html',
                    // testSrc: '...',
                    // e2eSrc: '...',
                    // watchSrc: '...'
                    // dist: 'dist path',
                    // buildDist:'build path',
                    // releaseDist: 'release path',
                    // depolyDist: 'depoly path'
                    loader: {
                        module:'development-assert-templ',
                        // add pipe works for module tasks.
                        pipe(stream, ctx, dist, gulp){ ... }
                        pipes: Pipe[] | (ctx, dist, gulp)=> Pipe[],
                        output: OutputPipe[] | (stream, ctx, dist, gulp)=> OutputPipe[]
                    }
                },
                templb: {
                    src: 'srcb/**/*.tpl.html',
                    // testSrc: '...',
                    // e2eSrc: '...',
                    // watchSrc: '...'
                    // dist: 'dist path',
                    // buildDist:'build path',
                    // releaseDist: 'release path',
                    // depolyDist: 'depoly path'
                    loader: 'development-assert-templ',
                    // also can add pipe works for module tasks here.
                    pipe(stream, ctx, dist, gulp){ ... }
                    pipes: Pipe[] | (ctx, dist, gulp)=> Pipe[],
                    output: OutputPipe[] | (stream, ctx, dist, gulp)=> OutputPipe[]
                },
                html: ['src/*.html', 'src/*.cshtml'],
                json: 'src/**/*.json',
                css:'src/common/**/*.css',
                moduleBcss: ['src/moduleB/**/*.css'],
                moduleAcss: {
                    src: ['src/apath/**/*.css', 'src/bpath/**/*.css'],
                    dist:'dist path',
                    buildDist:'buildDist path',
                    releaseDist: 'release Distpath',
                    depolyDist: 'depoly Distpath'
                },
                ...
            },
            loader: 'development-tool-web'
        }
    ]
});

https://github.com/zhouhoujun/development-assert-templ.git

Documentation

Documentation is available on the development-assert-templ docs site.

License

MIT © Houjun

Package Sidebar

Install

npm i development-assert-templ

Weekly Downloads

10

Version

2.0.2

License

MIT

Last publish

Collaborators

  • houjun