npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gulp-platform-file

v1.8.2

Published

Gulp task to select file for a plateform

Downloads

35

Readme

gulp-platform-file

Gulp task that help you to filter the files of your project according to the evironment you're building for (platform, deployment target, language, or whatever dimensions you can imagine).

Installation

npm install gulp-platform-file

var platformify = require("gulp-platform-file")

How it works

For example, let's imagine that your workspace contains platform specific files :

  • test.js
  • test-ios.js
  • test-android.js

You're about to build your application but you want to build for a specific platform, let's say in our case either "ios" or "android". To do so, you can use gulp-platform-file. Define "ios" and "android" as a dimension of your project and use gulp-platform-file as a filter in your Gulp task :

gulp.task("default", function() {
    gulp.src("workspace/**")
        .pipe(
            platformify().filter(["android", "ios"])
        )
        .pipe(gulp.dest("build/"));
});

Then call gulp with the platform for which you want to build as a parameter :

gulp --ios

The build directory will contain a file called "test.js" which contains the content of test-ios.js.

You can declare as many dimensions as you desire. But remember that the defining order is important : the first dimension has the most important weight.

For example, if your workspace contains :

  • test.js
  • test-prod.js
  • test-prod-ios.js
  • test-ios.js
  • test-android.js

With:

platformify().filter(["prod", "dev"]).filter(["android", "ios"]);

or

platformify().setDimensions([["prod", "dev"],["android", "ios"]]);

You will get:

gulp --ios --dev --> test-ios.js

gulp --ios --prod --> test-prod-ios.js

gulp --android --prod --> test-prod.js

You can even apply your dimensions tokens directly on folders. For example, let's imagine your workspace contains the following tree :

stuff
    |__ stuff.txt
    |__ things.txt
stuff-dev-android
    |__ stuff.txt
otherStuff-dev
    |__ otherStuff.txt
otherStuff-prod
    |__ otherStuff.txt

You defined the following task :

gulp.task("default", function() {
    gulp.src("workspace/**")
        .pipe(
            platformify().setDimensions([
                ["android", "ios"],
                ["prod", "dev"]
            ])
        )
        .pipe(gulp.dest("build/"));
});

Then :

gulp will give you :

build
    |__ stuff
        |__stuff.txt (copied from workspace/stuff)
        |__things.txt (copied from workspace/stuff)

gulp --dev will give you :

build
    |__ stuff
        |__stuff.txt (copied from workspace/stuff)
        |__things.txt (copied from workspace/stuff)
    |__ otherStuff
        |__ otherStuff.txt (copied from workspace/otherStuff-dev)

gulp --dev --android will give you :

build
    |__ stuff
        |__stuff.txt (copied from workspace/stuff-dev-android)
        |__things.txt (copied from workspace/stuff)
    |__ otherStuff
        |__ otherStuff.txt (copied from workspace/otherStuff-dev)

Gulp

You can use gulp-platform-file to filter files during Gulp process.

gulp.task("default", function() {
    gulp.src("files/*")
        .pipe(platformify()
              .filter(["prod", "dev", "test"])
              .filter(["android", "ios"])
         )
        .pipe(gulp.dest("dist"));
});

Browserify

You can use gulp-platform-file with Browserify.

gulp.task("default", function() {
    var browserify = require("browserify"),
        source = require("vinyl-source-stream");

    return browserify({
        entries: "test.js"
    })
    .transform(platformify
              .filter(["prod", "dev", "test"]))
    .bundle()
    .pipe(source("bundle.js"))
    .pipe(gulp.dest("dist"));
});

Babel

You can use gulp-platform-file with Babel or babelify if you're using es6 modules syntax.

gulp.task("withBabel", ["clean"], function() {
    return browserify({
        entries: "test.js"
    })
    .transform(babelify.configure({
        compact: false,
        extra: {
            "gulp-platform-file": {
                dimensions: [
                    ["test", "dev", "prod"],
                    ["sony", "android"]
                ]
            }
        },
        plugins: ["gulp-platform-file/plugin/babelFilterPlugin"]
    }))
    .bundle()
    .pipe(source("bundle.js"))
    .pipe(gulp.dest("dist"));
});

The babel plugin will analyze imports decalrations in each file and change them if it founds a more appropriate one according to your current building environment and to your dimensions.

API

platformify()

Create the filter for Gulp or Browserify.

platformify().filter(dimension)

Add a supported dimension.

platformify().setDimensions(dimensions)

Set all the supported dimensions.

platformify().enableAppendStrategy(true|false)

Indicate to the plugin the strategy to use when encountering a more specific file : replace or concatenate. The default strategy (append = false) is to replace the content of files with the more specific ones. However, you can choose another way to go by enabling this option : if enabled, the default file and the more specific one will be both loaded.

For instance, Imagine you have those 2 files :

  • myStyle.css
  • myStyle-dev.css

If build your project for the dev environment and you enabled the previous option then myStyle.css will be concatenated with myStyle-dev.css. This can allow you to override a few style for your dev environment for instance.

License

MIT License.