gnoll v0.7.0
Gnoll :japanese_ogre:
Tool for fast and easy bootstraping Webpack & React projects. It can perform basic tasks without any configuration files. But if you need to change some settings, you can create config files in the your project and extend the default configuration.
Table of content
Install
npm install gnollGnoll has command line interface.
You can add commands to the package.json file:
{
"scripts": {
"start": "gnoll start",
"build": "gnoll build"
}
}Commands
gnoll build
Creates optimized production build.
Options
-e, --entry pathDefault:./src/index.jsWebpack entry file.-o, --out pathDefault:./buildPath to the output directory.--html path/to/index.htmlDefault:./src/index.html(if exists) Page that will be bundled with automatically injected assets usinghtml-webpack-plugin. If you want to explicitly disable building html, use option--no-html.--config path/to/webpack.config.jsThis option allows to provide path to the custom webpack config file.--env=development|productionDefault:productionValue of theNODE_ENVenvironment variable.--target=web|nodeDefault:webThis options allows to specify target platform.- Sets webpack
targetoption - When target is
nodesetslibraryTargettocommonjs - Sets
targetsoptions of the@babel/preset-env(unless you override it using any method supported by browserslist)
- Sets webpack
--assets-cachingThis option enables optimizations for long term caching of static assets. Optimizations are based on this guide from webpack documentation – https://webpack.js.org/guides/caching/- It inserts hash of file content in its filename. This allows to cache files forever, because changed files will always have different names.
- Generates
manifest.jsonfile that maps original filenames to hashed ones.
--ssrCreates bundle for server side rendering.- Sets target to
node. - Disables output of the static files and styles.
- Disables bundling html page.
- Sets target to
gnoll watch
Creates development build and rebuild on changes.
This command has same options as build, but
default value for the --env option is development
gnoll start
Starts webpack development server.
Options are the same as for build command except for
--env (it always is set to development) and --target (always is web)
This command uses webpack-serve module.
You can configure it in the section serve in the webpack.config.js file.
gnoll lib
Use this command if you want to build library that should provide modules.
When building library, js files are compiled by Babel.
Format of the modules is changed to CommonJS.
All other files are copied as is. Result is placed in the lib directory.
Options:
--target=web|node
-e, --entry
Default: ./src
-o, --out
Default: ./lib
--watch
Starts watcher that recompiles files on changes.
--source-maps
Embed inline source maps into compiled files.
Configuration
This section describes how you can change configuration.
Webpack
Default webpack config includes following loaders:
babel-loaderforjsandjsxfilesfile-loaderfor the following formats: - images:pngsvgjpgjpeggifwebp- fonts:eotttfwoffwoff2- media:mp4oggwebmmp3
Building styles is not included in gnoll by default, but you can add it with gnoll-styles plugin.
If you want to change something in the webpack config, you can create
webpack.config.js in your project and extend the default config.
For convenience, you can use
webpack-merge
for merging several webpack configs.
const merge = require('webpack-merge')
const baseConfig = require('gnoll/config/webpack')
module.exports = merge(baseConfig, {
plugins [
somePlugin
],
module: {
rules: [
{ test: /\.smth$/, loader: 'some-loader' }
]
}
}Extracting vendor and runtime chunks
TODO
Babel
Javascript is compiled with Babel. Default config uses following presets:
@babel/preset-env(ES6 syntax features)@babel/preset-react(JSX syntax)
If you want to change change babel config, you can create .babelrc or
babel.config.js file in the your project or set babel property
in the package.json.
For example, this is how you can add support for decorators:
// babel.config.js
const baseConfig = require('gnoll/config/babel')
module.exports = {
...baseConfig,
plugins: [
['@babel/plugin-proposal-decorators', { legacy: true }],
['@babel/plugin-proposal-class-properties', { loose: true }]
]
}Browsers
TODO
Env vars
NODE_ENV
GNOLL_TARGET
GNOLL_ASSETS_CACHING
GNOLL_DEV_SERVER
GNOLL_SERVER_RENDERING
GNOLL_LIBLicense
Public domain, see the LICENCE file.
5 years ago
5 years ago
5 years ago
5 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago