Skip to content

Skeleton Framework Development

Mehdi El Fadil edited this page Jul 14, 2017 · 11 revisions

Install Development Dependencies

Skeleton Framework is developed with node.js, and postcss.

In the project root folder run npm install to install the local dependencies.


Development Tasks

npm command description
npm start Runs npm run watch and npm run serve, and serves the dev build at localhost:3000 with LiveReload enabled.
npm run build Creates the production ready, minified and non-minified versions of Skeleton Framework.
npm run watch Watches the source dir and runs npm run build on changes.

Project Structure

skeleton-framework
├── bower.json
├── dist
│   ├── index.html
│   ├── skeleton.css
│   └── skeleton.min.css
├── index.js
├── LICENSE
├── package.json
├── README.md
└── src
    ├── core
    │   ├── _base.css
    │   ├── _buttons.css
    │   ├── _code.css
    │   ├── _forms.css
    │   ├── _grid.css
    │   ├── _lists.css
    │   ├── _misc.css
    │   ├── _queries.css
    │   ├── _root.css
    │   ├── _spacing.css
    │   ├── _tables.css
    │   ├── _typography.css
    │   └── _utils.css
    ├── index.html
    └── skeleton.css