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

grunt-files-to-ngmodule

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-files-to-ngmodule

Simple grunt plugin to create a list of files and write to a angularjs module

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

grunt-files-to-ngmodule

Simple grunt plugin to create a list of files and wrap it as an angularjs module

Getting Started

This plugin requires Grunt.

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-files-to-ngmodule --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-files-to-ngmodule');

The "files_to_ngmodule" task

Overview

In your project's Gruntfile, add a section named files_to_ngmodule to the data object passed into grunt.initConfig().

grunt.initConfig({
  files_to_ngmodule: {
    files: {
      src: // [pattern],
      dest: // output file,
        options: {
          moduleName: // name of the angularjs module ,
          listName: // name of filelist array ,
          itemName: // item
       }
    }

  },
})

Options

options.moduleName

Type: String Default value: 'files'

options.listName

Type: String Default value: 'list'

options.itemName

Type: String Default value: 'item'

Usage Examples

grunt.initConfig({
  files_to_ngmodule: {
    files: {
      src: '<%= distdir %>/themes/*/*.css',
        dest: 'src/app/themelist.js',
        options: {
          moduleName: 'themeslist',
          name: 'THEMES',
          itemName: 'theme'
       }
    }
  },
});
Example output file
angular.module("themelist", [])
.constant({"THEMES": [
    {"name":"theme_1", "url":"/themes/default/8909873.style.css"},
    {"name":"theme_2", "url":"/themes/comso/8934573.style.css"},
    {"name":"theme_3", "url":"/themes/minimal/8923473.style.css"}
]});

Running the tests

After you have cloned the repo execute grunt test.

Release History

(Nothing yet)

License

Copyright (c) 2014 Nik G. Licensed under the MIT license.

Keywords

FAQs

Package last updated on 03 Mar 2014

Did you know?

Socket

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.

Install

Related posts

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