https://github.com/rilyu/packset
Dynamic-static site generator for React.
https://github.com/rilyu/packset
Last synced: about 1 month ago
JSON representation
Dynamic-static site generator for React.
- Host: GitHub
- URL: https://github.com/rilyu/packset
- Owner: rilyu
- Created: 2019-09-19T02:47:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-09T11:19:09.000Z (over 6 years ago)
- Last Synced: 2025-10-01T13:29:59.390Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Packset
### Usage
Creating a packset app:
```
yarn create packset-app my-app
cd my-app
yarn
```
Runs the app in development mode:
```
yarn start
```
Builds the app for production to the build folder:
```
yarn build
```
### Incremental builds
You can use `yarn build [urlPath] [...]` to build only the pages you need:
```
yarn build /content/1 /content/2 /content/3
```