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

sky-toolkit-core

Package Overview
Dependencies
Maintainers
6
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sky-toolkit-core - npm Package Compare versions

Comparing version 2.17.0 to 2.18.0

7

CHANGELOG.md

@@ -7,2 +7,9 @@ # Changelog

## 2.18.0
### Enhancements
* Conform all JavaScript to `eslint-config-sky`.
## 2.17.0

@@ -9,0 +16,0 @@

6

index.js

@@ -0,1 +1,3 @@

/* Disable ES6-Specific Rules */
/* eslint-disable no-var, prefer-template */
var version = require('./package.json').version;

@@ -7,4 +9,4 @@

module.exports = {
cdnUrl,
cdnTag
cdnUrl,
cdnTag,
};
{
"name": "sky-toolkit-core",
"version": "2.17.0",
"version": "2.18.0",
"description": "The core of Sky's CSS Toolkit",

@@ -14,3 +14,3 @@ "main": "index.js",

"scripts": {
"test": "mocha ./test/functional/sass-true.js"
"test": "mocha --compilers js:babel-core/register ./test/functional/sass-true.js"
},

@@ -17,0 +17,0 @@ "dependencies": {

@@ -1,5 +0,6 @@

var path = require('path');
var sassTrue = require('sass-true');
import path from 'path';
var sassFile = path.join(__dirname, '_all.scss');
sassTrue.runSass({file: sassFile, includePaths: ['node_modules/'], precision: 9}, describe, it);
import sassTrue from 'sass-true';
const sassFile = path.join(__dirname, '_all.scss');
sassTrue.runSass({ file: sassFile, includePaths: ['node_modules/'], precision: 9 }, describe, it);
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