New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

windicss

Package Overview
Dependencies
Maintainers
2
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

windicss - npm Package Compare versions

Comparing version

to
3.0.1

5

package.json
{
"name": "windicss",
"version": "3.0.0",
"version": "3.0.1",
"description": "Next generation utility-first CSS framework.",

@@ -121,2 +121,3 @@ "main": "index.js",

"@types/fs-extra": "^9.0.10",
"@types/glob": "^7.1.3",
"@types/jasmine": "^3.6.9",

@@ -138,2 +139,3 @@ "@types/js-yaml": "^4.0.0",

"fs-extra": "^9.1.0",
"glob": "^7.1.7",
"jasmine": "^3.7.0",

@@ -143,2 +145,3 @@ "jasmine-spec-reporter": "^6.0.0",

"mini-svg-data-uri": "^1.2.3",
"minimatch": "^3.0.4",
"nyc": "^15.1.0",

@@ -145,0 +148,0 @@ "pirates": "^4.0.1",

13

types/cli/utils.d.ts

@@ -0,1 +1,2 @@

import glob from 'glob';
export declare class Console {

@@ -7,13 +8,3 @@ static log(...message: unknown[]): void;

}
export declare function isFile(path: string): boolean;
export declare function walk(dir: string, deep?: boolean): {
type: string;
path: string;
}[];
export declare class FilePattern {
pattern: RegExp;
constructor(pattern: string);
match(text: string): boolean;
private _transform;
}
export declare function globArray(patterns: string[], options?: glob.IOptions): string[];
export declare function getVersion(): string;

@@ -20,0 +11,0 @@ export declare function generateTemplate(folder: string, outputPath?: string): {

Sorry, the diff of this file is too big to display