A Webpack Plugin for generating a Website as Html-Files from a Markdown File Structure
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.
 
Go to file
HerrHase b8f88a0d22
adding #18
1 year ago
.gitignore init 1 year ago
LICENSE adding 1 year ago
README.md adding 1 year ago
index.js adding 1 year ago
package-lock.json adding #18 1 year ago
package.json adding #18 1 year ago

README.md

Site-O-Mat / Webpack Plugin

A Webpack Plugin that wraps @site-o-mat/core.

Installation

Setup this registry in your project .npmrc file:

@site-o-mat:registry=https://gitea.node001.net/api/packages/site-o-mat/npm/

or run

npm config set @site-o-mat:registry=https://gitea.node001.net/api/packages/site-o-mat/npm/

Install with npm or yarn

npm i --save-dev @site-o-mat/webpack-plugin
yarn add --dev @site-o-mat/webpack-plugin

Configuration

Basic Usage:

const SiteomatWebpackPlugin = require('@site-o-mat/webpack-plugin')

plugins: [
    new SiteomatWebpackPlugin(
        './resources/site',
        './resources/views'
    )
]

Add options:

plugins: [
    new SiteomatWebpackPlugin(
        './resources/site',
        './resources/views',
        {
            <options>
        }
    )
]