lit-element
Advanced tools
Comparing version 2.4.0-pre.2 to 2.4.0-pre.3
@@ -20,4 +20,7 @@ # Change Log | ||
## [2.4.0] - 2020-08-12 | ||
## [2.4.0] - 2020-08-14 | ||
### Changed | ||
* Set type in package.json to "module" ([#974](https://github.com/Polymer/lit-element/pull/974)) | ||
### Added | ||
@@ -24,0 +27,0 @@ * Adds a `cache: boolean` argument to the `@query` decorator as a performance optimization for properties whose queried element is not expected to change. If cache is set to true, element DOM is queried when the property is first accessed, and the value is cached so it can be immediately returned on all subsequent property accesses. ([#1013](https://github.com/Polymer/lit-element/issues/1013)) |
@@ -67,3 +67,3 @@ /** | ||
(window['litElementVersions'] || (window['litElementVersions'] = [])) | ||
.push('2.4.0-pre.2'); | ||
.push('2.4.0-pre.3'); | ||
/** | ||
@@ -70,0 +70,0 @@ * Sentinal value used to avoid calling lit-html's render function when |
{ | ||
"name": "lit-element", | ||
"version": "2.4.0-pre.2", | ||
"version": "2.4.0-pre.3", | ||
"description": "A simple base class for creating fast, lightweight web components", | ||
@@ -8,2 +8,3 @@ "license": "BSD-3-Clause", | ||
"repository": "Polymer/lit-element", | ||
"type": "module", | ||
"main": "lit-element.js", | ||
@@ -35,3 +36,3 @@ "module": "lit-element.js", | ||
"lint": "tslint --project ./", | ||
"prepublishOnly": "node check-version-tracker.js && npm run lint && npm test", | ||
"prepublishOnly": "node check-version-tracker.cjs && npm run lint && npm test", | ||
"prepare": "npm run build", | ||
@@ -38,0 +39,0 @@ "regen-package-lock": "rm -rf node_modules package-lock.json; npm install", |
@@ -9,3 +9,2 @@ # LitElement | ||
[![Mentioned in Awesome lit-html](https://awesome.re/mentioned-badge.svg)](https://github.com/web-padawan/awesome-lit-html) | ||
[![BrowserStack Status](https://automate.browserstack.com/badge.svg?badge_key=TnM4R3dScWdhU1NRck1WejNtMmVoMzQrU2s5bnRtOVVGMmFkQWtEV25iST0tLTNiWEZVYldaV1VqY2oxTEVJV09XSFE9PQ==--e79a2e8601a562e5b200dfcd2d6a15416fd4ed5f)](https://automate.browserstack.com/public-build/TnM4R3dScWdhU1NRck1WejNtMmVoMzQrU2s5bnRtOVVGMmFkQWtEV25iST0tLTNiWEZVYldaV1VqY2oxTEVJV09XSFE9PQ==--e79a2e8601a562e5b200dfcd2d6a15416fd4ed5f) | ||
@@ -12,0 +11,0 @@ ## Documentation |
@@ -77,3 +77,3 @@ /** | ||
(window['litElementVersions'] || (window['litElementVersions'] = [])) | ||
.push('2.4.0-pre.2'); | ||
.push('2.4.0-pre.3'); | ||
@@ -80,0 +80,0 @@ export type CSSResultOrNative = CSSResult|CSSStyleSheet; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Yes
317778
87