grunt-npm2bower-sync

Grunt plugin syncing properties from package.json to bower.json

11 个版本
安装
npm install grunt-npm2bower-sync
yarn add grunt-npm2bower-sync
pnpm add grunt-npm2bower-sync
bun add grunt-npm2bower-sync
README

grunt-npm2bower-sync

Syncs specified properties from package.json to bower.json

NPM info

Build status dependencies devdependencies endorse

npm install grunt-npm2bower-sync --save-dev

Once that's done, add this line to your project's Gruntfile.js:

grunt.initConfig({
  sync: {
    all: {
      options: {
        // sync specific options
        sync: ['author', 'name', 'version', 'private'],
        // optional: override package values
        overrides: {
        	main: [
        		'<%= pkg.codename %>.js',
        		'<%= pkg.codename %>.css'
        	]
        },
        // optional: specify source and destination filenames
        from: '../package.json',
        to: 'dist/bower.json'
      }
    }
  }
  grunt.loadNpmTasks('grunt-npm2bower-sync');
  grunt.registerTask('default', ['sync']);
});

You can also sync properties from the command line using command grunt sync

If you need just the default properties synced, you can use task sync without options

grunt.initConfig({
  grunt.loadNpmTasks('grunt-npm2bower-sync');
  grunt.registerTask('default', ['sync']);
});

License

This repo was forked from grunt-sync-pkg by Jon Schlinkert.

Copyright (c) 2013-09-09 Jon Schlinkert Licensed under the MIT LICENSE.

版本列表
0.9.1 2015-05-05
0.9.0 2015-05-05
0.8.1 2015-01-18
0.8.0 2015-01-12
0.7.0 2015-01-12
0.6.0 2015-01-11
0.5.0 2015-01-11
0.4.0 2014-06-03
0.3.0 2013-12-11
0.0.2 2013-09-28
0.0.1 2013-09-28