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

ag-requirejs-angular-minify-fix

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ag-requirejs-angular-minify-fix

Automatic fixing of angular methods for minification

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ag-requirejs-angular-minify-fix

Automatic fixing of angular methods for minification

Used with grunt-contrib-requirejs

Usage

npm install ag-requirejs-angular-minify-fix --save-dev

In your javascript files, add function $ng name to enable fix to find your angular functions.

angular.controller("foo", function $ng($scope, $location, Foo) {
	// code here
});

Function is automatically converted into:

angular.controller("foo", ["$scope", "$location", "Foo", function ($scope, $location, Foo) {
	// code here
}]);

Gruntfile.js

requirejs: {
	compile: {
		options: {
			// other options ...
			onBuildRead: require('ag-requirejs-angular-minify-fix')
		}
	}
}

FAQs

Package last updated on 21 Oct 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