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

create-github-actions-setup-for-ember-addon

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-github-actions-setup-for-ember-addon - npm Package Compare versions

Comparing version 0.5.1 to 0.6.0

8

CHANGELOG.md
# Changelog
## v0.6.0 (2021-02-15)
#### :rocket: Enhancement
* [#42](https://github.com/jelhan/create-github-actions-setup-for-ember-addon/pull/42) Add support for node 12.x ([@jelhan](https://github.com/jelhan))
#### Committers: 1
- Jeldrik Hanschke ([@jelhan](https://github.com/jelhan))
## v0.5.1 (2021-01-07)

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

4

package.json
{
"name": "create-github-actions-setup-for-ember-addon",
"version": "0.5.1",
"version": "0.6.0",
"description": "Setup GitHub Actions for an Ember Addon",

@@ -49,3 +49,3 @@ "repository": "https://github.com/jelhan/create-github-actions-setup-for-ember-addon.git",

"engines": {
"node": ">=14"
"node": "12.x || >=14"
},

@@ -52,0 +52,0 @@ "publishConfig": {

import execa from 'execa';
import fs from 'fs';
import { mkdtemp, readFile, rmdir } from 'fs/promises';
import { promises as fsPromises } from 'fs';
import os from 'os';

@@ -8,2 +8,5 @@ import path from 'path';

// import directly from fs/promises when dropping node 12 support
const { mkdtemp, readFile, rmdir } = fsPromises;
const executable = path.join(

@@ -10,0 +13,0 @@ __dirname,

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