
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
grunt-assets-deployer
Advanced tools

因为个人Ghost博客( http://track-novtopro.rhcloud.com/ )是在OpenShift上,由于总所周知的原因,访问比较慢,所以想把一些静态资源放在七牛云存储。开始的时候我想使用 grunt-qiniu-deploy( https://github.com/chenboxiang/grunt-qiniu-deploy ),但是作者有一段时间没有更新,并且不支持同名文件的更新操作, 所以自己基于他的代码写了这么个Grunt plugin,在此对他表示感谢。
'use strict';
var config = require('./test/config');
module.exports = function (grunt) {
grunt.initConfig({
qiniu: {
options: {
ACCESS_KEY: config.ACCESS_KEY,
SECRET_KEY: config.SECRET_KEY,
bucket_name: config.bucket_name,
domain: config.domain
},
resources: [
{
cwd: 'test/fixtures',
prefix: 'public/',
pattern: '**/*.*'
}
]
}
});
grunt.loadTasks('tasks');
grunt.loadTasks('grunt-assets-deployer');
grunt.registerTask('qiniu');
};
FAQs
A simple grunt plugin to deploy assets to qiniu
The npm package grunt-assets-deployer receives a total of 15 weekly downloads. As such, grunt-assets-deployer popularity was classified as not popular.
We found that grunt-assets-deployer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.