0
私はnpm、gruntとbowerを調べています。npmとgruntを使用しているときのモジュール/スクリプトの参照
module.exports = function(grunt){
grunt.initConfig({
concat: {
options: {
separator: ';',
},
dist: {
src: ['node_modules/jquery/dist/jquery.js', 'node_modules/handlebars/dist/handlebars.js'],
dest: 'dist/scripts.js',
},
},
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.registerTask('default', ['concat']);
};
私は、スクリプトを追加する方が簡単かどうかはわかりませんでした。だから、パス全体を入力するのではなく、src: [jquery, 'handlebars'],
となるでしょうか?
ありがとうございます。
[bower](https://bower.io/)は助けになりますか? – evolutionxbox
私はこの状況でBowerがどのように役立つかはわかりません。あなたは設定でパス名を使用することになりますが、NPMの代わりにBowerのフォルダを指すだけです。 –