Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

build-workflow

Package Overview
Dependencies
Maintainers
1
Versions
126
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

build-workflow - npm Package Versions

1
13

3.2.5

Diff

Changelog

Source

v3.2.5

  • Build Scripts Changes
    • Update eslint to latest version - b57a32a, royriojas, 16/05/2015 01:06:40

  • Enhancements
    • Do not kill the bundler watch if the task fails to compile, just wait for the next set of changes - bdcd7e6, royriojas, 16/05/2015 01:06:08

  • Bug Fixes
    • Ensure consoleify transform is active only when buildNumber === 'dev' (only on dev mode) - 65b50ba, royriojas, 16/05/2015 01:05:36
royriojas
published 3.2.4 •

Changelog

Source

v3.2.4

  • Bug Fixes
    • prevent bundler from failing if not stricterify section set in the options - 8bde822, royriojas, 13/05/2015 12:30:20
royriojas
published 3.2.3 •

Changelog

Source

v3.2.3

  • Features
    • add checkIfSkip callback to stricterify in bundler task - eb16214, royriojas, 13/05/2015 02:49:02
royriojas
published 3.2.2 •

Changelog

Source

v3.2.2

  • Bug Fixes
    • consoleify transform is not working on ie9 - 37fad9a, royriojas, 08/05/2015 17:41:03
royriojas
published 3.2.1 •

Changelog

Source

v3.2.1

  • Build Scripts Changes
    • Fix dependency issue introduced by JSONStream in package.json - 293bdff, royriojas, 07/05/2015 12:03:39
royriojas
published 3.2.0 •

Changelog

Source

v3.2.0

bundler
  • Bug Fixes
    • make dotify transform global to be able to parse tpl files in node_modules - 629b046, royriojas, 09/04/2015 12:26:27
royriojas
published 3.1.0 •

royriojas
published 3.0.7 •

Changelog

Source

v3.0.7

bundler
  • Bug Fixes
    • Lock browserify version to 9.0.3. Latest version introduces a bug that produce no output when executed - 78db8b9, royriojas, 07/04/2015 15:19:52
royriojas
published 3.0.6 •

Changelog

Source

v3.0.6

compile-less
  • Bug Fixes
    • Fix for issue while trying to parse less files. Fixes #7 - 442094d, royriojas, 31/03/2015 02:32:52
royriojas
published 3.0.5 •

Changelog

Source

v3.0.5

twig
  • Enhancements
    • add options.extendTwig callback to twig grunt task - f753a12, royriojas, 30/03/2015 15:16:53

      extendTwig allows the consumer to extend twig, adding new filters or tags.

      For example adding a filter:

      pages: {
        options: {
          extendTwig: function ( Twig ) {
            Twig.extendFilter( 'processResource', function ( value, args ) {
              args = args || [];
              // add the version to all the required css or js files
              var addVersion = clsc( args[ 0 ], true );
              value = addVersion ? revFile(value, buildNumber) : value;
              return value;
            } );
          },
          cwd: 'src/pages/'
        },
        src: [ 'src/pages/**/*.twig' ],
        dest: 'dist/pages/'
      }
      
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc