mirror of
https://github.com/goreleaser/goreleaser-action.git
synced 2026-05-16 07:30:32 +00:00
Remove absolute paths
This commit is contained in:
parent
ff47e64685
commit
fce5f2e313
342 changed files with 6646 additions and 7223 deletions
10
node_modules/get-stream/buffer-stream.js
generated
vendored
10
node_modules/get-stream/buffer-stream.js
generated
vendored
|
|
@ -1,11 +1,11 @@
|
|||
'use strict';
|
||||
const PassThrough = require('stream').PassThrough;
|
||||
const {PassThrough} = require('stream');
|
||||
|
||||
module.exports = opts => {
|
||||
opts = Object.assign({}, opts);
|
||||
module.exports = options => {
|
||||
options = Object.assign({}, options);
|
||||
|
||||
const array = opts.array;
|
||||
let encoding = opts.encoding;
|
||||
const {array} = options;
|
||||
let {encoding} = options;
|
||||
const buffer = encoding === 'buffer';
|
||||
let objectMode = false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue