Skip to content

Commit c8f6292

Browse files
committed
Double quote all the things ember cli build
1 parent 4c24324 commit c8f6292

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

ember-cli-build.js

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*jshint node:true*/
22
/* global require, module */
3-
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
3+
var EmberApp = require("ember-cli/lib/broccoli/ember-app");
44

55
module.exports = function(defaults) {
66
var env = EmberApp.env() || "development";
7-
var isProductionLikeBuild = ['production', 'staging'].indexOf(env) > -1;
7+
var isProductionLikeBuild = ["production", "staging"].indexOf(env) > -1;
88
var fingerprintOptions = {
99
enabled: true,
10-
extensions: ['js', 'css', 'png', 'jpg', 'gif']
10+
extensions: ["js", "css", "png", "jpg", "gif"]
1111
};
1212

1313
switch (env) {
@@ -42,33 +42,33 @@ module.exports = function(defaults) {
4242
dotEnv: {
4343
clientAllowedKeys: ["CLOUDINARY_CLOUD_NAME"],
4444
path: {
45-
development: '.env',
46-
test: '.env.test',
47-
production: '.env.production'
45+
development: ".env",
46+
test: ".env.test",
47+
production: ".env.production"
4848
}
4949
}
5050
});
5151

52-
app.import('bower_components/tether/dist/js/tether.js');
53-
app.import('bower_components/tether/dist/css/tether.css');
54-
app.import('bower_components/bootstrap/dist/js/bootstrap.js');
55-
app.import('bower_components/bootstrap/dist/css/bootstrap.css');
56-
app.import('bower_components/moment/moment.js');
57-
app.import('bower_components/moment-timezone/builds/moment-timezone-with-data-2010-2020.js');
58-
app.import('bower_components/bootstrap-markdown/js/bootstrap-markdown.js');
59-
app.import('bower_components/bootstrap-markdown/css/bootstrap-markdown.min.css');
60-
app.import('bower_components/marked/lib/marked.js');
61-
app.import('bower_components/pace/pace.js');
62-
app.import('bower_components/pace/themes/purple/pace-theme-center-simple.css');
63-
app.import('bower_components/ember-uploader/dist/ember-uploader.named-amd.js');
64-
app.import('vendor/fontello/css/fontello.css');
52+
app.import("bower_components/tether/dist/js/tether.js");
53+
app.import("bower_components/tether/dist/css/tether.css");
54+
app.import("bower_components/bootstrap/dist/js/bootstrap.js");
55+
app.import("bower_components/bootstrap/dist/css/bootstrap.css");
56+
app.import("bower_components/moment/moment.js");
57+
app.import("bower_components/moment-timezone/builds/moment-timezone-with-data-2010-2020.js");
58+
app.import("bower_components/bootstrap-markdown/js/bootstrap-markdown.js");
59+
app.import("bower_components/bootstrap-markdown/css/bootstrap-markdown.min.css");
60+
app.import("bower_components/marked/lib/marked.js");
61+
app.import("bower_components/pace/pace.js");
62+
app.import("bower_components/pace/themes/purple/pace-theme-center-simple.css");
63+
app.import("bower_components/ember-uploader/dist/ember-uploader.named-amd.js");
64+
app.import("vendor/fontello/css/fontello.css");
6565

66-
var mergeTrees = require('broccoli-merge-trees');
67-
var pickFiles = require('broccoli-static-compiler');
68-
var customFonts = pickFiles('vendor/fontello/font', {
69-
srcDir: '/',
70-
files: ['**/*'],
71-
destDir: '/font'
66+
var mergeTrees = require("broccoli-merge-trees");
67+
var pickFiles = require("broccoli-static-compiler");
68+
var customFonts = pickFiles("vendor/fontello/font", {
69+
srcDir: "/",
70+
files: ["**/*"],
71+
destDir: "/font"
7272
});
7373

7474
return mergeTrees([app.toTree(), customFonts]);

0 commit comments

Comments
 (0)