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:
commit
7d4190c06e
2 changed files with 11 additions and 2 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -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
|
||||
|
|
10
Gruntfile.js
10
Gruntfile.js
|
@ -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
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue