New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

seed-color-scheme-helpscout

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seed-color-scheme-helpscout - npm Package Compare versions

Comparing version

to
0.0.2

1

index.js

@@ -5,2 +5,3 @@ var path = require('path');

var files = pathfinder(
require('seed-color-scheme'),
path.join(__dirname, 'scss')

@@ -7,0 +8,0 @@ );

4

package.json
{
"name": "seed-color-scheme-helpscout",
"version": "0.0.1",
"version": "0.0.2",
"description": "Help Scout color scheme for Seed",

@@ -50,4 +50,4 @@ "main": "index.js",

"dependencies": {
"seed-color-fn": "0.1.1"
"seed-color-scheme": "0.0.1"
}
}

@@ -10,3 +10,6 @@ # seed-color-scheme-helpscout [![Build Status](https://travis-ci.org/helpscout/seed-color-scheme-helpscout.svg?branch=master)](https://travis-ci.org/helpscout/seed-color-scheme-helpscout) [![npm version](https://badge.fury.io/js/seed-color-scheme-helpscout.svg)](https://badge.fury.io/js/seed-color-scheme-helpscout) [![Dependencies](https://david-dm.org/helpscout/seed-color-scheme-helpscout.svg)](https://david-dm.org/helpscout/seed-color-scheme-helpscout)

## Dependencies
* [Seed Color scheme](https://github.com/helpscout/seed-color-scheme)
## Basic Usage

@@ -32,2 +35,25 @@

**Note:** Because seed-color-scheme-helpscout has dependencies, its includePaths output will be an `array`. If you're including other paths in addition to seed-color-scheme-helpscout, you will need to flatten the array. An easy way to do this is to use [sass-pathfinder](https://github.com/itsjonq/sass-pathfinder).
Example with *sass-pathfinder*:
```javascript
var gulp = require('gulp');
var sass = require('gulp-sass');
gulp.task('sass', function () {
return gulp.src('./sass/**/*.scss')
.pipe(sass({
includePaths: pathfinder(
'./scss/vendor/example',
'./scss/plugins/super-awesome-plugin',
require('seed-color-scheme'),
require('seed-color-scheme-helpscout')
)
}))
.pipe(gulp.dest('./css'));
});
```
Once that is setup, simply `@import` *seed-color-scheme-helpscout* as needed in your `.scss` file:

@@ -34,0 +60,0 @@

@@ -11,3 +11,3 @@ 'use strict';

var includePaths = pathfinder(
require('seed-color-fn')
require('seed-color-scheme')
);

@@ -14,0 +14,0 @@

@@ -9,3 +9,3 @@ 'use strict';

var includePaths = pathfinder(
require('seed-color-fn')
require('seed-color-scheme')
);

@@ -12,0 +12,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet