@omnia/tooling-vue
Version:
Used to bundle and serve manifests web component that build on Vue framework.
21 lines (20 loc) • 909 B
TypeScript
declare var //globby = require('globby'),
del: any, extend: any, path: any, chalk: any, timestamp: any, md5File: any, fs: any;
import * as omniaWebpackPlugins from './webpack-plugins/omnia.webpack.plugins';
import * as composers from "@omnia/tooling-composers";
import * as enums from "../composers/models/Enums";
import * as composer from '../composers/task';
import { core, utils } from '@omnia/tooling';
import merge from 'webpack-merge';
import webpack from 'webpack';
declare var tooling: {
composer: typeof composer;
core: typeof core;
utils: typeof utils;
log: typeof utils.log;
logTime: typeof utils.logTime;
LogTypes: typeof utils.LogTypes;
};
declare var basePathProcess: string;
declare var isExtensionEnv: boolean;
export { omniaWebpackPlugins, basePathProcess, isExtensionEnv, tooling, webpack, chalk, timestamp, path, fs, extend, merge, del, md5File, composers, enums };