azure-storage-node/gruntfile.js

71 строка
2.6 KiB
JavaScript

//
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// 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.
//
module.exports = function(grunt) {
//init stuff
grunt.initConfig({
//jsdoc config
jsdoc: {
dist: {
src: [
'README.md',
'lib/azure-storage.js',
'lib/common/filters/retrypolicyfilter.js',
'lib/common/filters/linearretrypolicyfilter.js',
'lib/common/filters/exponentialretrypolicyfilter.js',
'lib/common/services/storageutilities.js',
'lib/services/blob/blobservice.core.js',
'lib/services/blob/blobservice.node.js',
'lib/services/blob/blobservice.browser.js',
'lib/services/blob/models/blobresult.js',
'lib/services/blob/models/containerresult.js',
'lib/services/blob/models/leaseresult.js',
'lib/services/blob/blobutilities.js',
'lib/services/queue/queueservice.js',
'lib/services/queue/queuemessageencoder.js',
'lib/services/queue/queueutilities.js',
'lib/services/queue/models/queueresult.js',
'lib/services/queue/models/queuemessageresult.js',
'lib/services/table/tableservice.js',
'lib/services/table/tablebatch.js',
'lib/services/table/tablequery.js',
'lib/services/table/tableutilities.js',
'lib/services/file/fileservice.core.js',
'lib/services/file/fileservice.node.js',
'lib/services/file/fileservice.browser.js',
'lib/services/file/fileutilities.js',
'lib/services/file/models/shareresult.js',
'lib/services/file/models/directoryresult.js',
'lib/services/file/models/fileresult.js',
'lib/common/services/storageserviceclient.js',
'lib/common/diagnostics/logger.js'
],
options: {
destination: 'docs',
template: 'node_modules/ink-docstrap/template',
configure: 'jsdoc/jsdoc.json'
}
}
},
});
grunt.loadNpmTasks('grunt-jsdoc');
grunt.registerTask('doc', ['jsdoc']);
grunt.registerTask('default', ['doc',]);
};