create-github-actions-setup-for-ember-addon
Advanced tools
Comparing version 0.5.1 to 0.6.0
# 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 @@ |
{ | ||
"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
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
153090
1258