Socket
Socket
Sign inDemoInstall

@epig/af-build-dev

Package Overview
Dependencies
8
Maintainers
4
Versions
27
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @epig/af-build-dev

基于af-webpack的前端构建编译工具


Version published
Weekly downloads
1
Maintainers
4
Install size
169 MB
Created
Weekly downloads
 

Readme

Source

af-build-dev

基于af-webpack的前端构建编译工具,可零配置开箱使用

usage

安装

$ npm i @epig/af-build-dev --save-dev
$ npm i @epig/af-build-dev -g #全局安装

cli

$ epig dev # 启动开发服务器
$ epig build # 构建项目

配置项

环境变量

只列部分,详细参考af-webpack源码;

NAMENOTESDEFAULT_VALUE
PROT服务器端口8000
ANALYZEwebpack-bundle-analyzer插件开关undefined
SPEED_MEASUREspeed-measure-webpack-plugin插件开关undefined
COMPORESS压缩混淆js文件选项undefined
POLYFILLbabel polyfill 选项undefined

.webpackrc.js 配置项

参考af-webpack中的webpack配置项,推荐在.epigrc.js文件中配置

由于af-build-dev内建chainConfig支持,请不要配置chainConfig,其他配置项和合并到内置配置项。

.epigrc.js 配置项

在此配置文件中也可以配置 .webpackrc.js 的同名配置项,会合并使用(优先级:.epigrc.js>.webpackrc.js), 但是配置在此的配置项不会进行检查。

plugins

通过数组的形式进行配置,第一项是插件名字或自定义插件,第二项(可选)为传进插件的参数,类似babel的配置方式

  • 插件列表

  • 类型 Array

  • example

plugins: [
  ['epig-plugin-admin', {noAutoRoute: true}],
]
chainWebpack

支持链式配置webpack配置,参考webpack-chain

  • 类型 Function

  • example

chainWebpack(chainConfig, { webpack }) {
  // 设置 alias
  chainConfig.resolve.alias.set('a', 'path/to/a');
}
targets

babel语法兼容配置,参考@babel/preset-env

  • 类型 Object

  • example

// 开启ie11支持
targets: {
  ie: 11,
}
gzip

构建时是否开启gzip压缩,生成的gz文件需配合express-static-gzip使用。参考example

  • 类型 Boolean

  • example

gzip:true
scripts

将script脚本注入到html模板中,支持head以及body注入位置,支持src或者content模式;

  • 类型 Array
export interface ScriptEnhanceOption {
  area?: 'head' | 'body';
  src?: string;
  content?: string;
}
  • example
scripts: [{
  src: 'https://as.alipayobjects.com/g/component/fastclick/1.0.6/fastclick.js',
}, {
  content: 'window.test="test";',
}, {
  area: 'body',
  content: 'window.end="end";',
}]

Keywords

FAQs

Last updated on 16 Oct 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc