Rename packaging folder for node stuff

This commit is contained in:
Joe Fiorini
2015-07-23 15:38:14 -04:00
parent f360a625ea
commit 57058493be
3 changed files with 8 additions and 8 deletions

View File

@@ -299,7 +299,7 @@ reports/ui_code: node_modules clean-ui Brocfile.js bower.json Gruntfile.js
# Run UI unit tests # Run UI unit tests
test_ui: node_modules minjs_ci test_ui: node_modules minjs_ci
$(TESTEM) ci --file testem.yml -R xunit $(TESTEM) ci --file testem.yml -p 7359 -R xunit
# Run API unit tests across multiple Python/Django versions with Tox. # Run API unit tests across multiple Python/Django versions with Tox.
test_tox: test_tox:
@@ -309,16 +309,16 @@ test_tox:
test_jenkins: test_jenkins:
$(PYTHON) manage.py jenkins -v2 --enable-coverage --project-apps-tests $(PYTHON) manage.py jenkins -v2 --enable-coverage --project-apps-tests
Gruntfile.js: packaging/grunt/Gruntfile.js Gruntfile.js: packaging/node/Gruntfile.js
cp $< $@ cp $< $@
Brocfile.js: packaging/grunt/Brocfile.js Brocfile.js: packaging/node/Brocfile.js
cp $< $@ cp $< $@
bower.json: packaging/grunt/bower.json bower.json: packaging/node/bower.json
cp $< $@ cp $< $@
package.json: packaging/grunt/package.template package.json: packaging/node/package.template
sed -e 's#%NAME%#$(NAME)#;s#%VERSION%#$(VERSION)#;s#%GIT_REMOTE_URL%#$(GIT_REMOTE_URL)#;' $< > $@ sed -e 's#%NAME%#$(NAME)#;s#%VERSION%#$(VERSION)#;s#%GIT_REMOTE_URL%#$(GIT_REMOTE_URL)#;' $< > $@
sync_ui: node_modules Brocfile.js sync_ui: node_modules Brocfile.js

View File

@@ -7,8 +7,8 @@
], ],
"watch": [ "watch": [
"tools/ui/timepiece.js", "tools/ui/timepiece.js",
"packaging/grunt/Brocfile.js", "packaging/node/Brocfile.js",
"packaging/grunt/tower-app.js" "packaging/node/tower-app.js"
], ],
"ext": "js json less html" "ext": "js json less html"
} }

View File

@@ -14,7 +14,7 @@ test_page: tests.html
disable_watching: true disable_watching: true
routes: routes:
/static: ../static /static: ../static
/tests.html: ../../../packaging/grunt/testem.mustache /tests.html: ../../../packaging/node/testem.mustache
/test-loader.js: lib/ember-cli-test-loader/test-loader.js /test-loader.js: lib/ember-cli-test-loader/test-loader.js
/vendor: ../../../node_modules /vendor: ../../../node_modules
/angular-mocks.js: lib/angular-mocks/angular-mocks.js /angular-mocks.js: lib/angular-mocks/angular-mocks.js