tinacms / tinacms
- понедельник, 21 октября 2019 г. в 00:24:58
TypeScript
Tina is a site editing toolkit for modern React-based sites (Gatsby and Next.js)
To get started:
git clone git@github.com:tinacms/tinacms.git
cd tinacms
npm install && npm run bootstrap
npm run build
# Start Gatsby demo
cd packages/demo-gatsby
npm run startTinaCMS uses Lerna to manage dependencies when developing locally. This allows the various packages to reference each other via symlinks. Running
npm installfrom within a package replaces the symlinks with references to the packages in the npm registry.
| Commands | Description |
|---|---|
| npm run bootstrap | Install dependencies and link local packages. |
| npm run build | Build all packages. |
| npm run watch | Watch all packages for rebuilds. |
| npm run test | Run tests for all packages. |
| lerna run build --scope <package> | Build only <package>. |