0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Merge pull request #237 from jgable/version-0.2.0

Modify build files to move artifacts inside of project
This commit is contained in:
Hannah Wolfe 2013-07-07 06:14:10 -07:00
commit 7d4190c06e
2 changed files with 11 additions and 2 deletions

3
.gitignore vendored
View file

@ -23,6 +23,9 @@ projectFilesBackup
# Ghost DB file
*.db
.build
.dist
/core/admin/assets/tpl/hbs-tpl.js
/core/admin/assets/css
/core/admin/assets/sass/modules/bourbon

View file

@ -1,6 +1,6 @@
var path = require('path'),
buildDirectory = path.resolve(process.cwd(), '../build'),
distDirectory = path.resolve(process.cwd(), '../dist'),
buildDirectory = path.resolve(process.cwd(), '.build'),
distDirectory = path.resolve(process.cwd(), '.dist'),
configureGrunt = function (grunt) {
var cfg = {
@ -217,6 +217,12 @@ var path = require('path'),
cwd: "<%= paths.buildBuild %>/",
src: ["**"]
}
},
bump: {
options: {
push: false
}
}
};