mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Modify build files to move artifacts inside of project
This commit is contained in:
parent
9f6f17b9ac
commit
a6bd6aa78c
2 changed files with 5 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
|
||||
|
|
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Reference in a new issue