Socket
Socket
Sign inDemoInstall

ember-compatibility-helpers

Package Overview
Dependencies
Maintainers
3
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-compatibility-helpers - npm Package Compare versions

Comparing version 1.2.6 to 1.2.7

.github/workflows/release.yml

11

CHANGELOG.md

@@ -0,1 +1,12 @@

## v1.2.7 (2023-10-30)
#### :bug: Bug Fix
* [#57](https://github.com/ember-cli/ember-compatibility-helpers/pull/57) add ember-cli-babel 8 to version check ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
#### :house: Internal
* [#59](https://github.com/ember-cli/ember-compatibility-helpers/pull/59) Setup release automation ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
#### Committers: 1
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
## v1.2.6 (2022-02-10)

@@ -2,0 +13,0 @@

3

index.js

@@ -55,3 +55,4 @@ 'use strict';

this._usingBabel6 = emberBabelChecker.satisfies('^6.0.0-beta.1');
this._usingBabel7 = emberBabelChecker.satisfies('^7.0.0-beta.1');
// ember-cli-babel 7 and 8 both use babel 7
this._usingBabel7 = emberBabelChecker.satisfies('^7.0.0-beta.1') || emberBabelChecker.satisfies('^8.0.0');

@@ -58,0 +59,0 @@ if (!this._usingBabel6 && !this._usingBabel7) {

{
"name": "ember-compatibility-helpers",
"version": "1.2.6",
"version": "1.2.7",
"description": "Zero-cost compatibility flags and helpers for Ember.js",

@@ -82,2 +82,3 @@ "keywords": [

"git": {
"commitMessage": "v${version}",
"tagName": "v${version}"

@@ -87,5 +88,9 @@ },

"release": true,
"releaseName": "v${version}",
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": false
}
}
}

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