Socket
Socket
Sign inDemoInstall

@lion/core

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lion/core - npm Package Compare versions

Comparing version 0.13.8 to 0.14.0

closestPolyfill.d.ts

8

CHANGELOG.md
# Change Log
## 0.14.0
### Minor Changes
- b2f981db: Add exports field in package.json
Note that some tools can break with this change as long as they respect the exports field. If that is the case, check that you always access the elements included in the exports field, with the same name which they are exported. Any item not exported is considered private to the package and should not be accessed from the outside.
## 0.13.8

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

22

package.json
{
"name": "@lion/core",
"version": "0.13.8",
"version": "0.14.0",
"description": "Core functionality that is shared across all Lion Web Components",

@@ -18,2 +18,3 @@ "license": "MIT",

"*.js",
"custom-elements.json",
"docs",

@@ -27,9 +28,13 @@ "src",

"scripts": {
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
"debug": "cd ../../ && npm run debug -- --group core",
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group core",
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group core",
"prepublishOnly": "../../scripts/npm-prepublish.js",
"prepublishOnly": "../../scripts/npm-prepublish.js && npm run custom-elements-manifest",
"test": "cd ../../ && npm run test:browser -- --group core"
},
"sideEffects": false,
"sideEffects": [
"./closestPolyfill.js",
"./differentKeyEventNamesShimIE.js"
],
"dependencies": {

@@ -47,3 +52,10 @@ "@open-wc/dedupe-mixin": "^1.2.18",

"access": "public"
}
}
},
"exports": {
".": "./index.js",
"./test-helpers/*": "./test-helpers/*",
"./closestPolyfill": "./src/closestPolyfill.js",
"./differentKeyEventNamesShimIE": "./src/differentKeyEventNamesShimIE.js"
},
"customElementsManifest": "custom-elements.json"
}
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