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

@enact/core

Package Overview
Dependencies
Maintainers
1
Versions
218
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@enact/core - npm Package Compare versions

Comparing version 3.3.0-alpha.2 to 3.3.0-alpha.3

10

CHANGELOG.md

@@ -5,2 +5,12 @@ # Change Log

## [3.3.0-alpha.3] - 2020-03-17
### Fixed
- `core/util.mergeClassNames` to mirror class names when used in unit tests
## [3.3.0-alpha.2] - 2020-03-09
No significant changes.
## [3.3.0-alpha.1] - 2020-02-26

@@ -7,0 +17,0 @@

2

package.json
{
"name": "@enact/core",
"version": "3.3.0-alpha.2",
"version": "3.3.0-alpha.3",
"description": "Enact is an open source JavaScript framework containing everything you need to create a fast, scalable mobile or web application.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -217,2 +217,11 @@ "use strict";

});
if (process.env.NODE_ENV === 'test') {
return new Proxy({}, {
get: function get(target, key) {
// use the merged value if it exists and the key otherwise
return css[key] || key;
}
});
}
}

@@ -219,0 +228,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