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

fable-css-modules

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fable-css-modules - npm Package Compare versions

Comparing version 1.2.0 to 1.3.0

3

build/classCollector.js

@@ -184,2 +184,5 @@ "use strict";

case 0:
if (this._modules.length == 0) {
return [2 /*return*/];
}
sb = new stringBuilder_1.default();

@@ -186,0 +189,0 @@ internalPrefix = this._internal ? "internal " : "";

@@ -109,2 +109,4 @@ "use strict";

_a.sent();
// Notify the user
console.log("Generation completed");
return [2 /*return*/];

@@ -111,0 +113,0 @@ }

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

## 1.3.0 - 2022-06-29
### Added
* Add message when the generation is done.
* Generate nothing if no CSS modules are found.
## 1.2.0 - 2022-06-29

@@ -11,0 +18,0 @@

2

package.json
{
"name": "fable-css-modules",
"version": "1.2.0",
"version": "1.3.0",
"description": "Generate Fable bindings for your CSS modules classes",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -169,2 +169,6 @@ import path from "path"

async writeToFile() {
if (this._modules.length == 0) {
return;
}
let sb = new StringBuilder();

@@ -171,0 +175,0 @@

@@ -67,2 +67,5 @@ import type { Arguments, CommandBuilder } from "yargs";

await classCollector.writeToFile();
// Notify the user
console.log("Generation completed");
};
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