https://github.com/sammarks/drupal-theme-scaffold
sammarks/scaffold adapted for Drupal themes.
https://github.com/sammarks/drupal-theme-scaffold
Last synced: 2 months ago
JSON representation
sammarks/scaffold adapted for Drupal themes.
- Host: GitHub
- URL: https://github.com/sammarks/drupal-theme-scaffold
- Owner: sammarks
- Created: 2015-03-17T15:02:04.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-17T16:03:03.000Z (about 10 years ago)
- Last Synced: 2024-10-19T09:19:01.259Z (7 months ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Scaffold
This repository is a basic scaffold for all templates I create. It uses the following technologies:
- Bower
- Gulp
- Node.JS
- SCSSBasically, it sets up the style folders and `gulpfile` to jumpstart creating a new mockup or template.
To get started, all you have to do is `cd` to the `.npm` folder of the repository, and then type:
npm install
gulp
Gulp will start, compile all of your CSS assets, move fonts to where they're supposed to go, and
then watch for any changes to your stylesheets, fonts, or Javascripts.## The .npm Folder
The `.npm` folder is important because Drupal will pick up on .info files created by
the node modules and try to load them as themes. If we put all the node modules inside
a hidden folder, we don't run into this problem. The only caveat is that the `gulpfile`
must go inside that folder as well.