grunt-oss-upload

0.0.1 • Public • Published

grunt-oss-upload

上传阿里云oss的grunt工具,基于grunt-oss-up修改

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-oss-upload --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-oss-upload');

The "oss" task

Overview

In your project's Gruntfile, add a section named oss_up to the data object passed into grunt.initConfig().

grunt.initConfig({
  oss: {
    options: {
      // Task-specific options go here.
    },
    files: {
      // Target-specific file lists and/or options go here.
    },
  },
});

Options

options.accessKeyId

Type: String

A string value that is your aliyun oss accessKeyId.

options.accessKeySecret

Type: String

A string value that is your aliyun oss accessKeySecret.

options.bucket

Type: String

A string value that is your aliyun oss bucket.

options.host

Type: String

A string value that is your aliyun oss host.

options.objectGen

Type: Function

Default:

function(dest, src){
    return [dest, path.basename(src)].join('\/');
}

A function that return a oss objectName by dest and src. Default return grunt task files' dest + files' name. There is another example

Usage Examples

Default Options

In this example, the default options are used to do something with whatever. So if the testing file has the content Testing and the 123 file had the content 1 2 3, the generated result would be Testing, 1 2 3.

grunt.initConfig({
  oss: {
    upload:{
      options: {
        accessKeyId: your_accessKeyId,
        accessKeySecret: your_accessKeySecret,
        bucket: your_bucket_name
      },
      files: {
        'myoss/js': ['src/main.js', 'src/other.js', 'src/js/*.js']
      }
    }
  },
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)

Readme

Keywords

Package Sidebar

Install

npm i grunt-oss-upload

Weekly Downloads

0

Version

0.0.1

License

none

Last publish

Collaborators

  • yoniji