sky-toolkit-core
Advanced tools
Comparing version 2.17.0 to 2.18.0
@@ -7,2 +7,9 @@ # Changelog | ||
## 2.18.0 | ||
### Enhancements | ||
* Conform all JavaScript to `eslint-config-sky`. | ||
## 2.17.0 | ||
@@ -9,0 +16,0 @@ |
@@ -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); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
149785
13