GithubHelp home page GithubHelp logo

rlugojr / sass-director Goto Github PK

View Code? Open in Web Editor NEW

This project forked from una/sass-director

0.0 2.0 0.0 70 KB

An app that generates a shell script to build a directory structure based on your Sass manifest file

Home Page: http://sassdirector.com

License: MIT License

HTML 26.70% JavaScript 23.58% Shell 10.56% CSS 39.16%

sass-director's Introduction

Sass Director

An app that generates a shell script to build a directory structure based on your Sass manifest file.

Using the Website

Input:

@import "utils/variables";
@import "utils/functions";
@import "utils/mixins";
@import "utils/placeholders";

@import "base/reset";
@import "base/typography";

@import "layout/navigation";
@import "layout/grid";
@import "layout/header";
@import "layout/footer";
@import "layout/sidebar";
@import "layout/forms";

@import "components/buttons";
@import "components/carousel";
@import "components/cover";
@import "components/dropdown";

@import "pages/home";
@import "pages/contact";

@import "themes/theme";
@import "themes/admin";

Default Output:

mkdir utils;cd utils;touch _variables.scss;touch _functions.scss;touch _mixins.scss;touch _placeholders.scss;cd ../;mkdir base;cd base;touch _reset.scss;touch _typography.scss;cd ../;mkdir layout;cd layout;touch _navigation.scss;touch _grid.scss;touch _header.scss;touch _footer.scss;touch _sidebar.scss;touch _forms.scss;cd ../;mkdir components;cd components;touch _buttons.scss;touch _carousel.scss;touch _cover.scss;touch _dropdown.scss;cd ../;mkdir pages;cd pages;touch _home.scss;touch _contact.scss;cd ../;mkdir themes;cd themes;touch _theme.scss;touch _admin.scss;

It works for files in the same directory and multiple subdirectories:

Input:

@import 'file1';

@import 'dir1/file2';
@import 'dir1/dir2/file3';

@import 'dir3/dir4/file5';

Output:

touch _file1.scss;mkdir dir1;cd dir1;touch _file2.scss;mkdir dir2;cd dir2;touch _file3.scss;cd ../;cd ../;mkdir dir3;cd dir3;mkdir dir4;cd dir4;touch _file5.scss;cd ../;cd ../;

Options

Options Default
Sass syntax .scss, .sass .scss
File prefix _, no _ use _

Node Module

There is now a node module! To install, either simply type npm install -g sass-director or clone this repo and use the command npm install -g. Then you can use the following format to build your directories and files:

sass-director <filename> <directory>

For instance, if you are in the home directory and have created a sass folder, you can type sass-director sass/main.scss sass, or you can simply leave off the directory command when inside of the sass folder: sass-director my-manifest.scss.

TO-DO

  • quotation style ' or "
  • choose .sass or .scss
  • make interface pretty
  • Option to add '_'
  • ignore comments
  • allow for subdirectories
  • create cli so we can go sass-director file-name.scss
  • Options for sass and underscore in node module
  • Add shellscript docs

sass-director's People

Contributors

braden337 avatar crocodillon avatar jonathantneal avatar mcky avatar stephnr avatar una avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.