All Projects → localjo → shell-loader

localjo / shell-loader

Licence: other
A Webpack loader that runs an arbitrary script on matching files

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to shell-loader

nautilus.js
[separated fork] Async JavaScript loader & dependency manager in ~600B [gziped]
Stars: ✭ 59 (+227.78%)
Mutual labels:  loader
fastify-loader
The route loader for the cool kids!
Stars: ✭ 17 (-5.56%)
Mutual labels:  loader
construi
Use Docker to define your build environment.
Stars: ✭ 24 (+33.33%)
Mutual labels:  build-tool
ukor
A Roku build tool with support for build flavors
Stars: ✭ 45 (+150%)
Mutual labels:  build-tool
GiG
🎉 generate gitignore files for almost all languages
Stars: ✭ 24 (+33.33%)
Mutual labels:  bash-script
magicRecon
MagicRecon is a powerful shell script to maximize the recon and data collection process of an objective and finding common vulnerabilities, all this saving the results obtained in an organized way in directories and with various formats.
Stars: ✭ 478 (+2555.56%)
Mutual labels:  bash-script
free-ada
Build scripts for FSF GCC and AdaCore tools
Stars: ✭ 45 (+150%)
Mutual labels:  bash-script
lidarr-automated-downloader
Lidarr enhancement bash script to download releases
Stars: ✭ 33 (+83.33%)
Mutual labels:  bash-script
YaEtl
Yet Another ETL in PHP
Stars: ✭ 60 (+233.33%)
Mutual labels:  loader
BlueRDPSploit
Auto IP range scanner & exploit tool for BlueKeep metasploit module
Stars: ✭ 21 (+16.67%)
Mutual labels:  bash-script
vue-load-image
A Vue component for showing loader during image loading https://john015.github.io/vue-load-image/
Stars: ✭ 60 (+233.33%)
Mutual labels:  loader
llmk
Light LaTeX Make
Stars: ✭ 93 (+416.67%)
Mutual labels:  build-tool
sw-loader
Yet another service worker loader
Stars: ✭ 19 (+5.56%)
Mutual labels:  loader
Invidious-Updater
Automatic install and update script for Invidious
Stars: ✭ 181 (+905.56%)
Mutual labels:  bash-script
gow
Missing watch mode for Go commands. Watch Go files and execute a command like "go run" or "go test"
Stars: ✭ 343 (+1805.56%)
Mutual labels:  build-tool
requirex
A different kind of module loader 📦🦖
Stars: ✭ 20 (+11.11%)
Mutual labels:  loader
Fortran-Tools
Fortran compilers, preprocessors, static analyzers, transpilers, IDEs, build systems, etc.
Stars: ✭ 31 (+72.22%)
Mutual labels:  build-tool
react-skeleton-loader
A react helper for skeleton loaders
Stars: ✭ 61 (+238.89%)
Mutual labels:  loader
spotify-reverse-playlist
This Linux bash script reverses the tracks in a playlist. It creates a new playlist with all tracks reversed.
Stars: ✭ 29 (+61.11%)
Mutual labels:  bash-script
Firmware Over The Air
graduation project of ITI, flashing a new firmware over the air for automotive industry
Stars: ✭ 18 (+0%)
Mutual labels:  bash-script

NPM Status

Shell Loader

A Webpack loader for running arbitrary shell scripts when loading files.

Install

npm install --save-dev shell-loader

Usage

Documentation: Using loaders

Add shell-loader your Webpack configuration object, setting options.script to the shell script you want to run on each file. Example;

module: {
  rules: [
    {
      test: /.*\.css$/,
      use: [ 'css-loader', { loader: 'shell-loader', options: {
        script: 'postcss --use autoprefixer'
      }} ]
    }
  ]
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].