Skip to content

Instantly share code, notes, and snippets.

@kristoferjoseph
Created October 7, 2013 16:51
Show Gist options
  • Save kristoferjoseph/6871167 to your computer and use it in GitHub Desktop.
Save kristoferjoseph/6871167 to your computer and use it in GitHub Desktop.
How to add a custom theme to a Topcoat 7.5 build
/*
Copyright 2012 Adobe Systems Inc.;
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/*global module:false, require:false, process:false*/
var path = require('path'),
os = require('os'),
chromiumSrc = process.env.CHROMIUM_SRC || "";
module.exports = function(grunt) {
'use strict';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
stylus: {
options: {
paths: grunt.file.expand(__dirname + '/node_modules/topcoat-*/src/').concat(__dirname + '/node_modules/CUSTOM_THEME_NAME/src/'),
/* FIXME: Utils is the last needing to be moved out of mixins
* folder
*/
.concat(grunt.file.expand(__dirname + '/node_modules/topcoat-utils/src/mixins/')),
compress: false
},
CUSTOM_THEME_NAME: {
options: {
import: ['CUSTOM_THEME_NAME', 'utils']
},
files: [{
src: 'node_modules/topcoat-*/src/**/*.styl',
dest: 'css/CUSTOM_THEME_NAME.css'
}]
},
mobilelight: {
options: {
import: ['theme-topcoat-mobile-light', 'utils']
},
files: [{
src: 'node_modules/topcoat-*/src/**/*.styl',
dest: 'css/topcoat-mobile-light.css'
}]
},
mobiledark: {
options: {
import: ['theme-topcoat-mobile-dark', 'utils']
},
files: [{
src: 'node_modules/topcoat-*/src/**/*.styl',
dest: 'css/topcoat-mobile-dark.css'
}]
},
desktoplight: {
options: {
import: ['theme-topcoat-desktop-light', 'utils']
},
files: [{
src: [
'node_modules/topcoat-*/src/**/*.styl',
'!node_modules/topcoat-navigation-bar/src/*.styl',
'!node_modules/topcoat-list/src/*.styl'
],
dest: 'css/topcoat-desktop-light.css'
}]
},
desktopdark: {
options: {
import: ['theme-topcoat-desktop-dark', 'utils']
},
files: [{
src: [
'node_modules/topcoat-*/src/**/*.styl',
'!node_modules/topcoat-navigation-bar/src/*.styl',
'!node_modules/topcoat-list/src/*.styl'
],
dest: 'css/topcoat-desktop-dark.css'
}]
}
},
topdoc: {
usageguides: {
options: {
source: 'css',
destination: 'demo',
template: 'node_modules/topdoc-theme/',
templateData: {
"title": "Topcoat",
"subtitle": "CSS for clean and fast web apps",
"download": {
"url": "https://github.com/topcoat/topcoat/archive/v0.7.0.zip",
"label": "Download"
},
"homeURL": "http://topcoat.io",
"siteNav": [
{
"url": "http://topcoat.io/topcoat",
"text": "Demo"
},
{
"url": "http://bench.topcoat.io/",
"text": "Benchmarks"
},
{
"url": "http://topcoat.io/blog",
"text": "Blog"
}
]
}
}
}
},
autoprefixer: {
dist: {
options: {
/*
* Add target browsers here
* https://github.com/ai/autoprefixer#browsers
* browsers: ['android 4']
*/
},
files: [{
expand: true,
cwd: 'css',
src: ['*.css', '!*.min.css'],
dest: 'css/'
}]
}
},
cssmin: {
minify: {
expand: true,
cwd: 'css',
src: ['*.css', '!*.min.css'],
dest: 'css',
ext: '.min.css'
}
},
htmlmin: {
telemetry: {
options: {
removeComments: true,
collapseWhitespace: true
},
files: [{
expand: true,
src: ['dev/test/**/topcoat/*.html'],
dest: '',
ext: '.test.html',
}],
},
},
clean: {
release: ['css']
},
copy: {
release: {
files: [{
expand: true,
flatten: true,
src: 'node_modules/topcoat-theme/font/**',
dest: 'font'
}, {
expand: true,
flatten: true,
src: 'node_modules/topcoat-theme/img/*',
dest: 'img'
}]
},
telemetry: {
files: [{
expand: true,
cwd: 'dev/test/perf/telemetry/perf/',
src: ['**'],
dest: path.join(chromiumSrc, 'tools/perf/')
}, {
expand: true,
flatten: true,
src: 'node_modules/topcoat-theme/font/**',
dest: path.join(chromiumSrc, 'tools/perf/page_sets/topcoat/release/font')
}, {
expand: true,
flatten: true,
src: 'node_modules/topcoat-theme/img/*',
dest: path.join(chromiumSrc, 'tools/perf/page_sets/topcoat/release/img')
}, {
src: ['css/**'],
dest: path.join(chromiumSrc, 'tools/perf/page_sets/topcoat/release/')
}]
}
},
jshint: {
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
unused: true,
boss: true,
eqnull: true,
browser: true,
globals: {
jQuery: true
}
},
gruntfile: {
src: 'Gruntfile.js'
},
lib_test: {
src: ['dev/lib/**/*.js', 'dev/test/**/*.js']
}
},
watch: {
files: ['src/**/*.styl'],
tasks: ['compile']
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-jade');
grunt.loadNpmTasks('grunt-contrib-stylus');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-exec');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-topdoc');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-htmlmin');
grunt.loadNpmTasks('grunt-autoprefixer');
//Load local tasks
grunt.loadTasks('dev/tasks');
// Default task.
grunt.registerTask('default', ['clean', 'stylus', 'autoprefixer', 'cssmin', 'topdoc', 'copy:release']);
grunt.registerTask('release', ['default', 'clean:src']);
grunt.registerTask('compile', ['topcoat:compile', 'topdoc', 'copy:release']);
grunt.registerTask('telemetry', '', function(platform, theme) {
if (chromiumSrc === "") grunt.fail.warn("Set CHROMIUM_SRC to point to the correct location\n");
grunt.task.run('check_chromium_src', 'perf:'.concat(platform || 'mobile').concat(':').concat(theme || 'light'), 'htmlmin:telemetry', 'copy:telemetry');
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment