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

tolk

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

tolk - npm Package Compare versions

Comparing version
1.1.1
to
1.1.2
+11
-5
lib/tolk.js
'use strict';
// Polfill Promise for old node versions
require('es6-promise');
var Path = require('path');

@@ -11,3 +14,3 @@ var when = require('when');

var autoprefixer = require('autoprefixer-core');
var autoprefixer = require('autoprefixer');
var postcss = require('postcss');

@@ -118,6 +121,9 @@

continuation = continuation.then(function (compiled) {
return postcss([autoprefixer(({ browsers: options.browsers }))]).process(compiled.result).then(function (result) {
compiled.result = result.css;
return compiled;
});
return postcss([ autoprefixer({ browsers: options.browsers }) ])
.process(compiled.result)
.then(function (result) {
compiled.result = result.css;
return compiled;
});
});

@@ -124,0 +130,0 @@ }

{
"name": "tolk",
"version": "1.1.1",
"version": "1.1.2",
"description": "A file reader that promises to translate non-web assets to web assets given the available transpilers, sourcemaps and all",

@@ -38,6 +38,7 @@ "main": "lib/tolk.js",

"dependencies": {
"accord": "^0.18.0",
"autoprefixer-core": "^5.2.0",
"accord": "^0.20.1",
"autoprefixer": "^6.0.3",
"es6-promise": "^3.0.2",
"inline-source-map-comment": "^1.0.5",
"postcss": "^4.1.11",
"postcss": "^5.0.8",
"when": "^3.7.2"

@@ -60,8 +61,7 @@ },

"myth": "1.3.0",
"node-sass": "^2.1.1",
"node-sass": "^3.3.3",
"stylus": "0.50.0",
"swig": "1.4.2",
"unexpected": "^7.5.1",
"unexpected-promise": "^1.1.1"
"unexpected": "^9.16.0"
}
}