![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Mix up gulp tasks like prison hooch. Pruno is a package that lifts heavily (takes most of the code) from Laravel Elixer. Some slight tweaks were made to allow for it to run tasks that build more complex front-end applications.
Simply run npm install -D pruno gulp
in your terminal.
'use strict';
/**
* You must pass an instance of the projects local gulp so that the gulp cli
* will take advantage of the pruno defined tasks.
*/
var gulp = require('gulp');
var pruno = require('pruno').use(gulp);
pruno(function(runner) {
// Publish npm files.
runner.publish('./node_modules/font-awesome/fonts/*', '/fonts/');
// Copy and optimize image assets.
runner.images('/assets/images/**/*', 'images');
// Move other assets
runner.assets(['!/assets/images/**/*', '/assets/**/*']);
// Spin up the specified koa server.
runner.koa('api/index.js')
// Compile stylus files.
runner.stylus('index.styl');
// Run browserify.
runner.browserify();
// Use livereload to refresh koa server when files change.
runner.livereload(['./public/**/*']);
});
Writing custom modules is easy, just follow the boilerplate:
var pruno = require('pruno');
var config = pruno.config;
var gulp = config.gulp;
pruno.extend('mytask', function(src, output, params) {
gulp.task('mytask', function() {
// Do some stuff
});
config.registerWatcher('mytask', './path/to/files/**/*.ext');
return config.queueTask('mytask');
});
FAQs
A gulp task manager with cascading configuration.
The npm package pruno receives a total of 6 weekly downloads. As such, pruno popularity was classified as not popular.
We found that pruno demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.