New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

stylez

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

stylez

Stylez boilerplate for Styledoc is a set of tools and conventions for easy style authoring and documentation writing

latest
Source
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

Stylez boilerplate for Styledoc

Styledoc is a set of tools and conventions for easy style authoring and documentation writing.

NOTE: Major changes since v0.1.0 - dropping support for node-sass and serve packages! Introduces Gulp-Dart-Sass for processing and Asciidoctor.js

The easiest way to get started with Styledoc methodology is to use Stylez boilerplate via npm (Node package manager).

  • Create new directory (i.e. my-project) and navigate there:
mkdir my-project && cd my-project
  • Initialize your new empty project with npm
npm init -y
  • Install Stylez boilerplate as a development package
npm i -D stylez
  • If you are using Linux/Mac/Unix/MINGW64 or Git Bash on Windows
  • copy Stylez config files into your new project
cp -r ./node_modules/stylez/* ./

Finally install it

npm install

then modify the files to suit your needs (package.json etc)

  • on Windows, if for some reason you can not use MINGW64 (ConEmu or similar), Git Bash or Windows Subsystem for Linux
  • use cmd.exe with robocopy

  • first move the files into a temporary folder

robocopy /move /e node_modules tmp
  • after that, replace the files with Stylez boilerplate
robocopy /move /e tmp\stylez .\

Finally install it

npm install

then modify the files to suit your needs (package.json etc)

Usage

To run watch script:

npm run watch

This will compile adoc, pug and scss files and start the local server instance at http://127.0.0.1:3000 that you can open in your browser.

To only use watch script that builds index.adoc files in directories beginning with s_ and doesn't compiles pug and sass:

npm run watch:adoc

If you need to use autoprefixer:

npm run autoprefixer

Please read Styledoc documentation about the methods and workflow:

https://www.styledoc.org

Keywords

sass

FAQs

Package last updated on 27 Nov 2018

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