0.0.16 • Published 3 years ago

suretec-framework v0.0.16

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

Suretec Framework

Installation

Here is how to use the Suretec Framework with a new project. From your projects root directory...

  • Run npm install suretec-framework --save
  • From your project directory, run npm install
  • Bring the img, js, and fonts directories into your projects root folder (Sample gulp task below)
  • Compile SASS from node_modules/suretec-framework/scss/main.scss
// Copy Suretec Framework files from /node_modules
gulp.task('vendor', function() {

  // Suretec Framework JS
  gulp.src([
      './node_modules/suretec-framework/js/**/*'
    ])
    .pipe(gulp.dest('./js'))

  // Suretec Framework Images
  gulp.src([
      './node_modules/suretec-framework/img/**/*'
    ])
    .pipe(gulp.dest('./img'))

  // Suretec Framework Fonts
  gulp.src([
      './node_modules/suretec-framework/fonts/**/*'
    ])
    .pipe(gulp.dest('./fonts'))

});

NOTE: npm install will fail unless you have the .npmrc file with the Font Awesome Pro token included within your project directory!

You will then need to set up a Gulp task to compile the SCSS since the framework is a SASS framework and does not include compiled CSS. It is set up in this fashion so changing the color palette is easier from project to project.

0.0.16

3 years ago

0.0.15

4 years ago

0.0.14

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago