@wethegit/sweet-potato-cooker v1.5.1
sweet-potato-cooker š©āš³
An opinionated static site generator that uses Pug as a template engine with yaml
files for localization and Sass for styles.
sweet-potato-cooker
is part of thesweet-potato
suite of tools. For information on how to structure the project check the sweet-potato docs.
Usage
Initiate a new project with npm and install.
npm init
npm install --save-dev @wethegit/sweet-potato-cooker
Create a pages/
folder and an index.pug
file.
mkdir pages
touch pages/index.pug
You are all set!
š½ Development
Serves it and watches for changes on the project:
npx sweet-potato-cooker start
š·āāļø Production
This builds your project into a directory named build/
that you can deploy to your edge of choice.
npx sweet-potato-cooker build
Note: for a quicker setup it's recommended to add these scripts to package.json
.
"scripts": {
"start": "sweet-potato-cooker start",
"build": "sweet-potato-cooker build"
}
See all commands & options
npx sweet-potato-cooker --help
Config
Create a sweet-potato.config.js
in the root of the project same level as package.json
and export a config object.
module.exports = {
// Options
buildDirectory: "dist/",
};
buildDirectory
Type: string
Default: build
Specify the directory to which build the files to.
sourceDirectory
Type: string
Default: .
Specify the source directory.
locales
Type: object
Localization configuration.
locales.directoryName
Default: locales
Name of the directory where the localization .yaml
files live.
locales.defaultName
Default: default
Name of the default locale and locale file.
šØ Important to note that the default locale won't be placed inside a sub directory. For example, a fr.yaml
locale output will be /fr/index.html
whereas a default.yaml
output will be /index.html
.
sassOptions
Type: function
Default: null
A function that will receive the file and environment as parameters and must return an object with valid node-sass options.
Example:
{
sassOptions: (isDev, file) => { return { // all options here } }
}
sitemap
Type: string || boolean
Default: false
If set, will generate a sitemap.xml
during the production build.
If a string
is provided, will use it as the base url.
If true
, will use the PUBLIC_URL
value from the .env
file.
breakpoints
Type: object
Default: false
An object with key/value pair where the key is the name of the breakoint and the value is a valid media query.
These will be passed to pug
, scss
and js
files.
Example
{
breakpoints: {
'medium-up': '(min-width: 768px)',
'large-up': '(min-width: 1024px)',
'medium-only': '(min-width: 768px) and (max-width: 1023px)'
}
}
ignoreOnWatch
Type: array
Default: false
Defines files/paths to be ignored during local development.
By default the following are ignored:
- "node_modules"
- ".git"
- "build"
- ".vscode"
- "package.json"
- "package-lock.json"
- "yarn-lock.json"
Example
{
ignoreOnWatch: ["Dockerfile", "server/"];
}
10 days ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago