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

lifterlms-lib-tasks

v4.0.1

Published

gulp tasks and node utilities for LifterLMS and LifterLMS add-on development

Downloads

2,828

Readme

lifterlms-lib-tasks

Gulp tasks and Node utilities for LifterLMS and LifterLMS add-on development

Installation

npm install --save-dev lifterlms-lib-tasks

Create a gulpfile in the root of your project (gulpfile.js)

The file must contain, at a minimum:

var gulp = require('gulp');

require( 'lifterlms-lib-tasks' )( gulp );

Config File

Create a file named .llmsconfig in the root directory of your project

Example:


{
  "build": {
    "custom": [ "custom_build_task_1", "custom_build_task_2" ]
  },
  "pot": {
    "bugReport": "https://mybugreports.tld",
    "domain": "my-text-domain",
    "dest": "i18n/",
    "jsClassname": "LLMS_SLUG_l10n",
    "jsFilename": "class-llms-slug-l10n.php",
    "jsSince": "1.0.0",
    "lastTranslator": "Jeffrey Lebowski <[email protected]>",
    "team": "Team Name <[email protected]>",
    "package": "my-package-name",
  },
  "scripts": {
    "src": [ "assets/js/\*\*/\*.js", "!assets/js/\*\*/\*.min.js" ],
    "dest": "assets/js/"
  },
  "watch": {
    "custom": [
      {
        "glob": [ "path/to/files/**.js" ],
        "tasks": [ "watch_task_1", "watch_task_2" ]
      }
    ],
  }
}

Tasks

  • gulp build : Run textdomain, pot, scripts, and styles tasks.
  • gulp pot : Generates a .pot file in the configured destination directory (defaults to i18n)
  • gulp scripts : Minifies unminified scripts in the configured scripts.src glob via uglifyjs and saves them with a .min suffix in the scripts.dest directory
  • gulp styles : Compiles .scss files to .css (both minified and unminified) from the configured styles.src glob via gulp-sass and saves in the styles.dest directory.
  • gulp textdomain : Ensures all WP i18n functions have the text domain specified by pot.domain.
  • gulp versioner -V X.X.X : Replaces all instances of "@deprecated [version]", "@since [version]", & "@version [version]" with the supplied version number in specifed files. Uses versioner.src glob. If versioner.scripts is true, adds glob defined in scripts.src.
  • gulp watch : Watch all configured src directories for pot, scripts, and styles tasks and re-run them on change.