Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ianrose/deventy
A minimal 11ty starting point for building static websites with modern tools.
https://github.com/ianrose/deventy
11ty autoprefixer cssnano eleventy postcss sass static-site-generator webpack
Last synced: 27 days ago
JSON representation
A minimal 11ty starting point for building static websites with modern tools.
- Host: GitHub
- URL: https://github.com/ianrose/deventy
- Owner: ianrose
- License: mit
- Created: 2019-05-19T03:20:54.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T13:54:08.000Z (about 2 months ago)
- Last Synced: 2024-10-01T09:04:40.465Z (about 1 month ago)
- Topics: 11ty, autoprefixer, cssnano, eleventy, postcss, sass, static-site-generator, webpack
- Language: JavaScript
- Homepage:
- Size: 545 KB
- Stars: 175
- Watchers: 1
- Forks: 27
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deventy
A minimal 11ty starting point for building static websites with modern tools. Preferring the CLI of each development tool, allowing for an easier upgrade path.
Features:
- [11ty](https://www.11ty.io/)
- [Sass/SCSS](https://github.com/sass/node-sass)
- [Webpack](https://webpack.js.org/)
- [Babel](https://babeljs.io/)
- [light-server](https://github.com/txchen/light-server)
- [PostCSS](https://postcss.org/)
- [CSSnano](https://cssnano.co/)
- [Autoprefixer](https://github.com/postcss/autoprefixer)## Getting Started
Install all dependencies using npm:
```
$ nvm use
$ npm install
```### To Develop
```
$ npm run dev
```
And in debug mode:
```
$ npm run dev:debug
```You can view the website at the given access URL:
```
$ light-server is listening at http://localhost:4000
```The local url is configured in `.lightserverrc`
### To Build
```
npm run build
```