You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
webpack-plugin/index.js

61 lines
1.8 KiB

2 years ago
import { validate } from 'schema-utils'
1 year ago
import HappySite from './src/happySite.js'
2 years ago
// schema for options object
const schema = {
type: 'object',
properties: {
1 year ago
source: {
type: 'string'
},
destination: {
type: 'string'
},
views: {
type: 'string'
2 years ago
}
}
}
export default class HappySiteWebpackPlugin {
constructor(options = {}) {
1 year ago
validate(schema, options)
this._options = options
2 years ago
}
apply(compiler) {
1 year ago
const pluginName = HappySiteWebpackPlugin.name
// webpack module instance can be accessed from the compiler object,
// this ensures that correct version of the module is used
// (do not require/import the webpack or any symbols from it directly).
const { webpack } = compiler
// Compilation object gives us reference to some useful constants.
const { Compilation } = webpack
// RawSource is one of the "sources" classes that should be used
// to represent asset sources in compilation.
const { RawSource } = webpack.sources
compiler.hooks.thisCompilation.tap(pluginName, (compilation) => {
// Tapping to the assets processing pipeline on a specific stage.
compilation.hooks.processAssets.tap({
name: pluginName,
// Using one of the later asset processing stages to ensure
// that all assets were already added to the compilation by other plugins.
stage: Compilation.PROCESS_ASSETS_STAGE_SUMMARIZE
},
(assets) => {
const happySite = new HappySite(this._options.source, this._options.destination, this._views)
})
})
2 years ago
}
1 year ago
}
module.exports = { HappySiteWebpackPlugin }