New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@syncrona/sass-plugin

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncrona/sass-plugin

SyncroNow AI build plugin that compiles Sass/SCSS to CSS in the ServiceNow sync pipeline.

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
20
66.67%
Maintainers
1
Weekly downloads
 
Created
Source

@syncrona/sass-plugin

npmnodelicenseCITypeScript

Overview

SyncroNow AI is the ServiceNow scoped-application toolchain behind the syncrona CLI. This package is one of its build plugins: register it in the rules array of your sync.config.js and syncrona build runs it over every matching file.

This plugin allows you to run Sass on scss/sass files. This enables you to modularize your CSS and also adds some useful features that CSS doesn't normally support such as variables.

Installation

npm i -D @syncrona/sass-plugin

Options

No options required.

Example Usage

This example takes .scss files and compiles them with the Sass compiler.

//sync.config.js
module.exports={
  rules:{
    match:/\.scss$/,
    plugins:[
      {
        name:"@syncrona/sass-plugin",
        //No options necessary
        options:{}
      }
    ]
  }
};

FAQs

Package last updated on 25 Aug 2026

Related posts