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

@viamrobotics/prime-core

Package Overview
Dependencies
Maintainers
0
Versions
173
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@viamrobotics/prime-core - npm Package Compare versions

Comparing version 0.0.171 to 0.0.172

13

dist/__tests__/code-snippet.spec.js

@@ -49,2 +49,15 @@ import { describe, it, expect, vi } from 'vitest';

});
it('Re-renders code block when code prop updates', async () => {
const { rerender } = render(CodeSnippet, common);
const initialCode = screen.getByText(common.code);
expect(initialCode).toBeInTheDocument();
const newCode = '{ their: "json" }';
await rerender({
...common,
code: newCode,
});
const updatedCode = screen.getByText(newCode);
expect(updatedCode).toBeInTheDocument();
expect(screen.queryByText(common.code)).not.toBeInTheDocument();
});
});

1

dist/icon/icons.d.ts

@@ -36,2 +36,3 @@ type Path = string;

readonly bug: string;
readonly 'bug-outline': string;
readonly broadcast: string;

@@ -38,0 +39,0 @@ readonly 'card-text-outline': string;

@@ -31,2 +31,3 @@ import * as MDI from '@mdi/js';

bug: MDI.mdiBug,
'bug-outline': MDI.mdiBugOutline,
broadcast: MDI.mdiBroadcast,

@@ -33,0 +34,0 @@ 'card-text-outline': MDI.mdiCardTextOutline,

4

package.json
{
"name": "@viamrobotics/prime-core",
"version": "0.0.171",
"version": "0.0.172",
"repository": {

@@ -49,3 +49,3 @@ "type": "git",

"@testing-library/jest-dom": "^6.1.5",
"@testing-library/svelte": "^4.1.0",
"@testing-library/svelte": "^5.2.6",
"@testing-library/user-event": "^14.5.1",

@@ -52,0 +52,0 @@ "@types/lodash-es": "^4.17.12",

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