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

@player-ui/partial-match-fingerprint-plugin

Package Overview
Dependencies
Maintainers
0
Versions
292
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@player-ui/partial-match-fingerprint-plugin - npm Package Compare versions

Comparing version 0.8.0--canary.307.9645 to 0.8.0--canary.410.15865

dist/cjs/index.cjs

83

package.json
{
"name": "@player-ui/partial-match-fingerprint-plugin",
"version": "0.8.0--canary.307.9645",
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"@player-ui/player": "0.8.0--canary.307.9645"
},
"version": "0.8.0--canary.410.15865",
"main": "dist/cjs/index.cjs",
"dependencies": {
"@player-ui/partial-match-registry": "0.8.0--canary.410.15865",
"tapable-ts": "^0.2.3",
"@babel/runtime": "7.15.4"
"tslib": "^2.6.2"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/player-ui/player-ui"
"devDependencies": {
"@player-ui/make-flow": "workspace:*"
},
"bugs": {
"url": "https://github.com/player-ui/player-ui/issues"
"peerDependencies": {
"@player-ui/player": "0.8.0--canary.410.15865"
},
"homepage": "https://player-ui.github.io",
"contributors": [
{
"name": "Adam Dierkens",
"url": "https://github.com/adierkens"
},
{
"name": "Spencer Hamm",
"url": "https://github.com/spentacular"
},
{
"name": "Harris Borawski",
"url": "https://github.com/hborawski"
},
{
"name": "Jeremiah Zucker",
"url": "https://github.com/sugarmanz"
},
{
"name": "Ketan Reddy",
"url": "https://github.com/KetanReddy"
},
{
"name": "Brocollie08",
"url": "https://github.com/brocollie08"
},
{
"name": "Kelly Harrop",
"url": "https://github.com/kharrop"
},
{
"name": "Alejandro Fimbres",
"url": "https://github.com/lexfm"
},
{
"name": "Rafael Campos",
"url": "https://github.com/rafbcampos"
"module": "dist/index.legacy-esm.js",
"types": "types/index.d.ts",
"bundle": "dist/PartialMatchFingerprintPlugin.native.js",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
"./dist/index.css": "./dist/index.css",
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/cjs/index.cjs"
}
],
"bundle": "./dist/partial-match-fingerprint-plugin.prod.js"
},
"files": [
"dist",
"src",
"types"
]
}

@@ -1,4 +0,3 @@

import type { Player, PlayerPlugin } from '@player-ui/player';
import type { Registry } from '@player-ui/partial-match-registry';
import type { Asset } from '@player-ui/types';
import type { Player, PlayerPlugin, Asset } from "@player-ui/player";
import type { Registry } from "@player-ui/partial-match-registry";

@@ -11,3 +10,3 @@ /**

export class PartialMatchFingerprintPlugin implements PlayerPlugin {
name = 'partial-match-fingerprint';
name = "partial-match-fingerprint";
private registry: Registry<any>;

@@ -27,8 +26,8 @@ private mapping: Map<string, any>;

if (
(resolved && node && node.type === 'asset') ||
node.type === 'view'
(resolved && node && node.type === "asset") ||
node.type === "view"
) {
this.mapping.set(
(resolved as Asset).id,
this.registry.get(resolved as Asset)
this.registry.get(resolved as Asset),
);

@@ -35,0 +34,0 @@ }

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