1
0
mirror of https://github.com/2ec0b4/kaamelott-soundboard.git synced 2025-12-08 23:53:24 +00:00

Utilise Bower pour la gestion des dépendances

This commit is contained in:
Antoine
2016-06-17 21:35:53 +02:00
parent 8bd3862820
commit 1c764e1d12
6 changed files with 47 additions and 24 deletions

View File

@@ -1,16 +1,16 @@
require.config({
baseUrl: "/js/app",
paths: {
backbone: "../../node_modules/backbone/backbone-min",
"backbone.radio": "../../node_modules/backbone.radio/build/backbone.radio",
css: "../../node_modules/require-css/css",
handlebars: "../../node_modules/handlebars/dist/handlebars.min",
hbs: "../../node_modules/require-handlebars-plugin/hbs",
jquery: "../../node_modules/jquery/dist/jquery.min",
likely: "../../node_modules/ilyabirman-likely/release/likely",
marionette: "../../node_modules/backbone.marionette/lib/backbone.marionette.min",
text: "../../node_modules/requirejs-text/text",
underscore: "../../node_modules/underscore/underscore-min"
backbone: "../../bower_components/backbone/backbone-min",
"backbone.radio": "../../bower_components/backbone.radio/build/backbone.radio",
css: "../../bower_components/require-css/css",
handlebars: "../../bower_components/handlebars/handlebars.min",
hbs: "../../bower_components/require-handlebars-plugin/hbs",
jquery: "../../bower_components/jquery/dist/jquery.min",
likely: "../../bower_components/ilyabirman-likely/release/likely",
marionette: "../../bower_components/backbone.marionette/lib/backbone.marionette.min",
text: "../../bower_components/requirejs-text/text",
underscore: "../../bower_components/underscore/underscore-min"
},
shim: {
backbone: {