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

grailed-angular-engine

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grailed-angular-engine - npm Package Compare versions

Comparing version 0.0.2 to 1.0.0

2

package.json
{
"name": "grailed-angular-engine",
"standalone": "grailedAngularEngine",
"version": "0.0.2",
"version": "1.0.0",
"description": "",

@@ -6,0 +6,0 @@ "main": "src/index.js",

@@ -8,3 +8,5 @@ if (typeof angular === 'undefined') {

exports = module.exports = function (_grail) {
var grail = _grail;
var grail = _grail,
angularConfig = grail.config('angular') || {},
modules = Array.isArray(angularConfig.modules) ? angularConfig.modules : [];

@@ -77,5 +79,7 @@ grail.angular = {

modules.unshift('ngRoute');
grail.angular.controller.$inject = ['$scope', '$route', '$routeParams', '$location'];
grail.angular.routes.$inject = ['$routeProvider', '$locationProvider'];
grail.angular.module = angular.module('app', ['ngRoute']).config(grail.angular.routes);
grail.angular.module = angular.module('app', modules).config(grail.angular.routes);

@@ -82,0 +86,0 @@ };

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