我希望將/node_modules/es6-shim/es6-shim.min.js
包含在Sails v0.11的客戶端中。將節點模塊包含爲要注入的文件
我試過,包括入管道這樣:
var jsFilesToInject = [
// Load sails.io before everything else
'js/dependencies/sails.io.js',
/* INCLUDE NODE MODULE */
'/node_modules/es6-shim/es6-shim.min.js',
// Dependencies like jQuery, or Angular are brought in here
'js/dependencies/**/*.js',
// All of the rest of your client-side js files
// will be injected here in no particular order.
'js/**/*.js',
// Use the "exclude" operator to ignore files
// '!js/ignore/these/files/*.js'
];
這可能嗎?我真的不想使用bower或CDN,我想通過npm安裝/更新依賴關係。
顯示文件結構的佈局會使這個問題更容易回答。 –