summaryrefslogtreecommitdiff
path: root/web-ui
diff options
context:
space:
mode:
authorAnike Arni <aarni@thoughtworks.com>2016-12-28 17:53:34 -0200
committerAnike Arni <aarni@thoughtworks.com>2016-12-28 17:53:34 -0200
commitbba4d81629d0a7519a02f719f14d10a7996c9063 (patch)
tree828ab44ac0a4271bd3c910f44f3e851a2e14d8af /web-ui
parentee97dee72ec1673ad18fe86855b1e1aceabba674 (diff)
Remove requirejs compilation taks and options
Diffstat (limited to 'web-ui')
-rw-r--r--web-ui/config/buildoptions.js27
-rw-r--r--web-ui/package.json1
2 files changed, 0 insertions, 28 deletions
diff --git a/web-ui/config/buildoptions.js b/web-ui/config/buildoptions.js
deleted file mode 100644
index 63c91653..00000000
--- a/web-ui/config/buildoptions.js
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright (c) 2014 ThoughtWorks, Inc.
- *
- * Pixelated is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Pixelated is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
- */
-
-({
- baseUrl: '../app',
- wrap: true,
- almond: true,
- optimize: 'none',
- mainConfigFile: '../app/js/main.js',
- out: '../.tmp/app.concatenated.js',
- include: ['js/main'],
- name: 'bower_components/almond/almond'
-})
diff --git a/web-ui/package.json b/web-ui/package.json
index 6405102b..de6759fb 100644
--- a/web-ui/package.json
+++ b/web-ui/package.json
@@ -61,7 +61,6 @@
"build-js": "webpack --colors --progress",
"jshint": "jshint --config=.jshintrc app test",
"clean": "rm -rf 'dist/*' app/js/generated/hbs/* app/css/*",
- "buildmain": "node_modules/requirejs/bin/r.js -o config/buildoptions.js",
"package": "/bin/bash config/package.sh",
"imagemin": "node config/imagemin.js",
"minify_sandbox": "html-minifier app/sandbox.html --collapse-whitespace | sed 's|<!--usemin_start-->.*<!--usemin_end-->|<script src=\"sandbox.min.js\" type=\"text/javascript\"></script>|' > dist/sandbox.html",