Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewlaskey/nacelle-11ty
https://github.com/andrewlaskey/nacelle-11ty
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/andrewlaskey/nacelle-11ty
- Owner: andrewlaskey
- License: mit
- Created: 2020-08-22T20:44:05.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T23:15:48.000Z (almost 2 years ago)
- Last Synced: 2023-03-24T06:01:32.305Z (over 1 year ago)
- Language: JavaScript
- Size: 3.17 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 22
-
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. Uses the CLI of each tool. Allowing a much easier upgrade path for each individual development tool.
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
```