Socket
Socket
Sign inDemoInstall

ember-cli-htmlbars

Package Overview
Dependencies
Maintainers
3
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-cli-htmlbars - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

17

ember-addon-main.js

@@ -12,3 +12,3 @@ 'use strict';

init: function() {
this._super.init && this._super.init.apply(this, arguments);
if (this._super.init) { this._super.init.apply(this, arguments); }
checker.assertAbove(this, '0.1.2');

@@ -64,7 +64,16 @@ },

if (!templateCompilerPath) {
var ember = this.project.findAddonByName('ember-core');
if (ember) {
return ember.absolutePaths.templateCompiler;
} else if (!templateCompilerPath) {
templateCompilerPath = this.project.bowerDirectory + '/ember/ember-template-compiler';
}
return path.resolve(this.project.root, templateCompilerPath);
var absolutePath = path.resolve(this.project.root, templateCompilerPath);
if (path.extname(absolutePath) === '') {
absolutePath += '.js';
}
return absolutePath;
},

@@ -75,3 +84,3 @@

var EmberENV = projectConfig.EmberENV || {};
var templateCompilerPath = this.templateCompilerPath() + '.js';
var templateCompilerPath = this.templateCompilerPath();

@@ -78,0 +87,0 @@ global.EmberENV = EmberENV; // Needed for eval time feature flag checks

{
"name": "ember-cli-htmlbars",
"version": "1.0.7",
"version": "1.0.8",
"description": "A library for adding htmlbars to ember CLI",

@@ -5,0 +5,0 @@ "main": "index.js",

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