Coder Social home page Coder Social logo

the-simian / gulp-concat-filenames Goto Github PK

View Code? Open in Web Editor NEW
4.0 4.0 5.0 48 KB

A simple gulp plugin to take a list of files, and rather than concatenating their contents into a singular file, you concat their file names into a file, with, template, prefix and suffix options

License: MIT License

JavaScript 100.00%

gulp-concat-filenames's People

Contributors

greenkeeper[bot] avatar noamyoungerm avatar rainfore avatar the-simian avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

gulp-concat-filenames's Issues

An in-range update of stream-assert is breaking the build 🚨

Version 2.0.3 of stream-assert was just published.

Branch Build failing 🚨
Dependency stream-assert
Current Version 2.0.2
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

stream-assert is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • βœ… continuous-integration/codeship Build succeeded Details
  • ❌ continuous-integration/travis-ci/push The Travis CI build could not complete due to an error Details

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of chai is breaking the build 🚨

Version 4.0.2 of chai just got published.

Branch Build failing 🚨
Dependency chai
Current Version 4.0.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As chai is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this πŸ’ͺ

Status Details
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • ❌ continuous-integration/codeship Build failed Details

Release Notes 4.0.2 / 2017-06-05

We have another bugfix release, addressing some issues for WebPack 1 users.

Bug Fixes

  • Revert getting version information from package.json, some bundler tools like Webpack do not come default with json loaders despite Node being able to handle this. This change moves back to hardcoding the version number in the codebase. (#985, #986)
Commits

The new version differs by 1 commits.

  • 616cf8b Revert get version package json (#986)

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of mocha is breaking the build 🚨

The devDependency mocha was updated from 6.1.4 to 6.2.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

mocha is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ❌ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v6.2.0

6.2.0 / 2019-07-18

πŸŽ‰ Enhancements

πŸ› Fixes

πŸ“– Documentation

πŸ” Coverage

πŸ”© Other

Commits

The new version differs by 39 commits.

  • bd47776 Release v6.2.0
  • cc595af update CHANGELOG.md for v6.2.0 [ci skip]
  • 59d70ee fix: remove duplicate line-height property (#3957)
  • f77cac4 fix: do not redeclare variable (#3956)
  • 6201e42 Hide stacktrace when cli args are missing (#3963)
  • 88f45d5 Don't re-initialize grep option on watch re-run (#3960)
  • 5d4dd98 Fix No Files error when file is passed via --files (#3942)
  • 15b96af Collect test files later (#3953)
  • ccee5f1 Base reporter store ref to console.log (#3725)
  • 47318a7 update @mocha/contributors to v1.0.4 (#3944)
  • c903147 More, improved integration tests for watching (#3929)
  • e341ea4 Update CI config files to use Node-12.x (#3919)
  • 3064d25 update @mocha/docdash to v2.1.1 (#3945)
  • 9ea45e7 do not fork if no node flags present (#3827)
  • d02a096 modify Mocha constructor to accept options.global or options.globals (#3914)

There are 39 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

docs and deps update

update dependencies, increase package.json, credit Noam for PR, update readme

Changelog

Hi, just want to make sure no breaking changes were in 1.0

Couldnt find a changelog or release notes.

Thanks and please take this...

Thank you for this plugin! I'm using it to generate index.ts files for every folder in my project. Here is something in return...

A typescript declaration file you can save as index.d.ts and add "typings": "index.d.ts". That way it will be easier for devs using TS to use your plugin :)

declare module "gulp-concat-filenames" {

  import { Duplex } from 'stream';

  interface IConcatFilenameOptions {
    // The character to use in place of '\n'' for a newline. The default value will be '\n'
    newline?: string;
    // Some text to prepend to every entry in the list of filenames
    prepend?: string;
    // Some text to append to every intry in the list of filenames
    append?: string;
    // A function that takes one parameter (the file name) and returns the string after some formatting. Can be used in addition to, or instead of, append and prepend
    template?: (filename: string) => string;
    // the root folder. Including this argument will return a list of relative paths instead of absolute paths.
    root?: string;
  }

  export default function concatFilenames(filename: string, options: IConcatFilenameOptions): Duplex;
}

EDIT: I just updated the declarations to something that actually works :)

An in-range update of sinon-chai is breaking the build 🚨

The devDependency sinon-chai was updated from 3.3.0 to 3.4.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

sinon-chai is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ❌ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for 3.4.0

https://github.com/domenic/sinon-chai/blob/master/CHANGELOG.md#340

Commits

The new version differs by 4 commits.

  • 942504a Fix trailing comma in package.json
  • d990858 3.4.0
  • 60df918 chore(infra): upgrade all deps (#144)
  • fb4f82a Docs: install sinon-chai as a dev dependency (#135)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of chai is breaking the build 🚨

Version 4.0.1 of chai just got published.

Branch Build failing 🚨
Dependency chai
Current Version 4.0.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As chai is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this πŸ’ͺ

Status Details
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • ❌ continuous-integration/codeship Build failed Details

Release Notes 4.0.1 / 2017-05-31

4.0.1

Of course, any major release cannot go without a quick bugfix release shortly after - and here's ours!

Bug Fixes

  • Remove package.json browser field which was mistakenly added, and caused bundler tools like Browserify or Webpack to fail as it attempted to rebundle an already bundled file. (#978, #982)
Commits

The new version differs by 2 commits.

  • b38b8d7 fix: (#978) remove browser field (#982)
  • d0ace69 Update supported node version badge in README FIX #975

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.