Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using atpackager #400

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 32 additions & 0 deletions Gruntfile.js
@@ -0,0 +1,32 @@
/*
* Copyright 2012 Amadeus s.a.s.
* 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.
*/

/**
* Main entry point for grunt. The build configuration is split into several files in the ./build/grunt-config
* directory.
* @param {Object} grunt
*/
module.exports = function (grunt) {

grunt.registerTask('clean', ['removedirs:bootstrap', 'removedirs:prod']);
grunt.registerTask('release', ['clean', 'bootstrap', 'prod', 'gzipStats:prod']);
grunt.registerTask('default', ['gruntTimeHookStart', 'release', 'gruntTimeHookEnd']);

grunt.loadTasks('./build/grunt-tasks');
grunt.loadNpmTasks('atpackager');
grunt.loadNpmTasks('grunt-verifylowercase');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadTasks('./build/grunt-config');
};
114 changes: 0 additions & 114 deletions build/build-os-bootstrap.js

This file was deleted.

249 changes: 0 additions & 249 deletions build/build-os-prod.js

This file was deleted.