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

@lion/helpers

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lion/helpers - npm Package Compare versions

Comparing version 0.5.17 to 0.5.18

8

CHANGELOG.md
# Change Log
## 0.5.18
### Patch Changes
- 98f1bb7e: Ensure all lit imports are imported from @lion/core. Remove devDependencies in all subpackages and move to root package.json. Add demo dependencies as real dependencies for users that extend our docs/demos.
- Updated dependencies [98f1bb7e]
- @lion/core@0.13.7
## 0.5.17

@@ -4,0 +12,0 @@

4

package.json
{
"name": "@lion/helpers",
"version": "0.5.17",
"version": "0.5.18",
"description": "Helpers that are used throughout lion and can be used outside",

@@ -34,3 +34,3 @@ "license": "MIT",

"dependencies": {
"@lion/core": "0.13.6"
"@lion/core": "0.13.7"
},

@@ -37,0 +37,0 @@ "keywords": [

@@ -8,3 +8,3 @@ [//]: # 'AUTO INSERT HEADER PREPUBLISH'

```js script
import { html } from 'lit-html';
import { html } from '@lion/core';

@@ -11,0 +11,0 @@ import '../sb-action-logger.js';

@@ -120,3 +120,3 @@ import { expect, fixture as _fixture, html } from '@open-wc/testing';

const loggerCountEl = loggerEl.firstElementChild?.querySelector('.logger__log-count');
const codeEl = /** @type {HTMLElement} */ (loggerEl.firstElementChild?.querySelector('code'));
let codeEl = /** @type {HTMLElement} */ (loggerEl.firstElementChild?.querySelector('code'));

@@ -127,2 +127,3 @@ expect(loggerEl.children.length).to.equal(1);

el.log('Hello, Earth!');
codeEl = /** @type {HTMLElement} */ (loggerEl.firstElementChild?.querySelector('code'));
expect(loggerEl.children.length).to.equal(1);

@@ -133,2 +134,3 @@ expect(codeEl.innerText).to.equal('Hello, Earth!');

el.log('Hello, Planet!');
codeEl = /** @type {HTMLElement} */ (loggerEl.firstElementChild?.querySelector('code'));
expect(loggerEl.children.length).to.equal(1);

@@ -135,0 +137,0 @@ expect(codeEl.innerText).to.equal('Hello, Planet!');

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