Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

kss-orion-theme

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kss-orion-theme

A flat simplistic theme for kss-node

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

KSS Orion Theme

This is a basic template for kss-node styleguide. "kss-node" is a NodeJS implementation of Knyle Style Sheets (KSS).

Screenshot

How to use this template

  1. Install kss-node. Type npm install kss or npm install -g kss for global CLI.
  2. git clone https://github.com/WebDevLuke/kss-orion-theme.git.
  3. Install project dependancies npm install.
  4. Install gulp global client if you haven't already. Type npm install -g gulp.
  5. Type gulp build to compile the template into kss-orion-theme/dist.
  6. Copy the contents of kss-orion-theme/dist into a folder within your working style guide directory.
  7. Run kss-node command with --template option, like below.
kss-node <sourcedir> --template path/to/templatefolder

Alternatively if you're using Gulp you can set up a task to compile your style guide by adapting the below:

var options = {};
options.styleGuide = {
	"source": [
	  "dev/"
	],
	"destination":  "styleguide/dist/",
	"css": [
	  "../../dist/css/style.css"
	],
	homepage: '../../styleguide/kss-orion-theme/homepage.md',
	title: 'Style Guide',
	template: "path/to/templatefolder"
};

gulp.task('styleguide', function(cb) {
	kss(options.styleGuide, cb);
});

FAQs

Package last updated on 05 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc