mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
closes #150 - Updating Grunt
Grunt tasks are now hopefully a little bit less confusing Have updated the readme to match
This commit is contained in:
parent
7b932b9986
commit
1369789aec
2 changed files with 23 additions and 14 deletions
26
Gruntfile.js
26
Gruntfile.js
|
@ -9,6 +9,7 @@
|
|||
var cfg = {
|
||||
// Common paths to be used by tasks
|
||||
paths: {
|
||||
adminAssets: './core/admin/assets',
|
||||
build: buildDirectory,
|
||||
nightlyBuild: path.join(buildDirectory, 'nightly'),
|
||||
dist: distDirectory,
|
||||
|
@ -57,14 +58,14 @@
|
|||
sass: {
|
||||
admin: {
|
||||
files: {
|
||||
'core/admin/assets/css/screen.css': 'core/admin/assets/sass/screen.scss'
|
||||
'<%= paths.adminAssets %>/css/screen.css': '<%= paths.adminAssets %>/sass/screen.scss'
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
shell: {
|
||||
bourbon: {
|
||||
command: 'bourbon install --path core/admin/assets/sass/modules/'
|
||||
command: 'bourbon install --path <%= paths.adminAssets %>/sass/modules/'
|
||||
},
|
||||
|
||||
commitNightly: {
|
||||
|
@ -85,30 +86,28 @@
|
|||
},
|
||||
|
||||
handlebars: {
|
||||
|
||||
core: {
|
||||
|
||||
options: {
|
||||
|
||||
namespace: "JST",
|
||||
|
||||
processName: function (filename) {
|
||||
filename = filename.replace('./core/admin/assets/tmpl/', '');
|
||||
return filename.replace('.hbs', '');
|
||||
}
|
||||
},
|
||||
|
||||
files: {
|
||||
"./core/admin/assets/tmpl/hbs-tmpl.js": "./core/admin/assets/tmpl/**/*.hbs"
|
||||
"<%= paths.adminAssets %>/tmpl/hbs-tmpl.js": "<%= paths.adminAssets %>/tmpl/**/*.hbs"
|
||||
}
|
||||
|
||||
}
|
||||
},
|
||||
|
||||
watch: {
|
||||
handlebars: {
|
||||
files: './core/admin/assets/tmpl/**/*.hbs',
|
||||
files: '<%= paths.adminAssets %>/tmpl/**/*.hbs',
|
||||
tasks: ['handlebars']
|
||||
},
|
||||
sass: {
|
||||
files: '<%= paths.adminAssets %>/sass/**/*',
|
||||
tasks: ['sass:admin']
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -118,7 +117,6 @@
|
|||
expand: true,
|
||||
src: [
|
||||
'**',
|
||||
|
||||
'!node_modules/**',
|
||||
'!core/shared/data/*.db',
|
||||
'!.sass*',
|
||||
|
@ -161,7 +159,7 @@
|
|||
|
||||
// Prepare the project for development
|
||||
// TODO: Git submodule init/update (https://github.com/jaubourg/grunt-update-submodules)?
|
||||
grunt.registerTask("init", ["shell:bourbon", "sass:admin"]);
|
||||
grunt.registerTask("init", ["shell:bourbon", "sass:admin", 'handlebars']);
|
||||
|
||||
// Run API tests only
|
||||
grunt.registerTask("test-api", ["mochaTest:api"]);
|
||||
|
@ -173,7 +171,7 @@
|
|||
grunt.registerTask("validate", ["jslint", "mochaTest:all"]);
|
||||
|
||||
/* Nightly builds
|
||||
* - Bump patch version in package.json,
|
||||
* - Bump patch version in package.json,
|
||||
* - Copy files to build-folder/nightly/#{version} directory
|
||||
* - Clean out unnecessary files (travis, .git*, .af*, .groc*)
|
||||
* - Zip files in build folder to dist-folder/#{version} directory
|
||||
|
@ -199,7 +197,7 @@
|
|||
]);
|
||||
|
||||
// When you just say "grunt"
|
||||
grunt.registerTask("default", ['sass:admin', 'handlebars', 'watch']);
|
||||
grunt.registerTask("default", ['sass:admin', 'handlebars']);
|
||||
};
|
||||
|
||||
module.exports = configureGrunt;
|
||||
|
|
11
README.md
11
README.md
|
@ -28,6 +28,17 @@ The top priorities right now are:
|
|||
|
||||
Frontend can be located at [localhost:3333](localhost:3333), Admin is at [localhost:3333/ghost](localhost:3333/ghost)
|
||||
|
||||
Whist developing you may wish to use **grunt watch** to watch for changes to handlebars and sass and recompile automatically
|
||||
|
||||
### Updating with the latest changes
|
||||
|
||||
Pulling down the latest changes from master will often require more than just a pull, you may also need to do one or more of the following:
|
||||
|
||||
* **npm install** - fetch any new dependencies
|
||||
* **grunt** - will recompile handlebars templates and sass for the admin (as long as you have previously run grunt init to install bourbon)
|
||||
* git submodule update - fetch the latest changes to Casper (the default theme)
|
||||
* delete core/shared/data/testdb.db - delete the database and allow Ghost to recreate the fixtures
|
||||
|
||||
### SQLite3 Install Instructions
|
||||
Ghost depends upon SQLite3, which has to be built for each OS. NPM is as smart as it can be about this, and as long as your machine has all the pre-requisites for compiling/building a C++ program, the npm install still works.
|
||||
|
||||
|
|
Loading…
Reference in a new issue