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

@stylable/core-test-kit

Package Overview
Dependencies
Maintainers
7
Versions
188
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stylable/core-test-kit - npm Package Compare versions

Comparing version 4.11.0 to 4.12.0

5

dist/inline-expectation.js

@@ -192,3 +192,6 @@ "use strict";

if (declarationCheck === `full`) {
const actualDecl = testNode.nodes.map((x) => x.toString()).join(`; `);
const actualDecl = testNode.nodes
.filter((x) => x.type !== `comment`)
.map((x) => x.toString())
.join(`; `);
const expectedDecl = expectedDeclarations

@@ -195,0 +198,0 @@ .map(([prop, value]) => `${prop}: ${value}`)

6

package.json
{
"name": "@stylable/core-test-kit",
"version": "4.11.0",
"version": "4.12.0",
"description": "Stylable core test-kit",

@@ -10,4 +10,4 @@ "main": "dist/index.js",

"dependencies": {
"@file-services/memory": "^5.7.1",
"@stylable/core": "^4.11.0",
"@file-services/memory": "^6.0.0",
"@stylable/core": "^4.12.0",
"chai": "^4.3.6",

@@ -14,0 +14,0 @@ "flat": "^5.0.2",

@@ -233,3 +233,6 @@ import { matchDiagnostic } from './diagnostics';

if (declarationCheck === `full`) {
const actualDecl = testNode.nodes.map((x) => x.toString()).join(`; `);
const actualDecl = testNode.nodes
.filter((x) => x.type !== `comment`)
.map((x) => x.toString())
.join(`; `);
const expectedDecl = expectedDeclarations

@@ -236,0 +239,0 @@ .map(([prop, value]) => `${prop}: ${value}`)

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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