mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-03 15:47:37 +01:00
switch most dependencies to npm
This commit is contained in:
parent
ad8f6a2add
commit
c0667fc14b
@ -104,16 +104,16 @@ module.exports = function(grunt){
|
||||
production: {
|
||||
files: {
|
||||
'<%= config.site %>/<%= config.assets.js %>/picturefill.min.js': [
|
||||
'bower_components/picturefill/dist/picturefill.js'
|
||||
'node_modules/picturefill/dist/picturefill.js'
|
||||
],
|
||||
'<%= config.site %>/<%= config.assets.js %>/CustomElements.min.js': [
|
||||
'bower_components/webcomponentsjs/CustomElements.js'
|
||||
],
|
||||
'<%= config.site %>/<%= config.assets.js %>/kremalicious3.min.js': [
|
||||
'bower_components/jquery/dist/jquery.js',
|
||||
'node_modules/jquery/dist/jquery.js',
|
||||
'bower_components/jquery-infinite-scroll/jquery.infinitescroll.js',
|
||||
'bower_components/masonry/dist/masonry.pkgd.js',
|
||||
'bower_components/imagesloaded/imagesloaded.js',
|
||||
'node_modules/masonry-layout/dist/masonry.pkgd.js',
|
||||
'node_modules/imagesloaded/imagesloaded.js',
|
||||
'bower_components/simple-jekyll-search/dest/jekyll-search.js',
|
||||
'bower_components/jquery.adaptive-background/index.js',
|
||||
'bower_components/time-elements/time-elements.js',
|
||||
|
@ -6,8 +6,8 @@
|
||||
|
||||
|
||||
// Normalize all the things
|
||||
@import '../../../bower_components/normalize-css/normalize.css'
|
||||
@import '../../../bower_components/normalize-opentype.css/normalize-opentype.css'
|
||||
@import '../../../node_modules/normalize-css/normalize.css'
|
||||
@import '../../../node_modules/normalize-opentype.css/normalize-opentype.css'
|
||||
|
||||
// Nib Nib
|
||||
@import 'nib'
|
||||
|
@ -8,14 +8,8 @@
|
||||
"description": "Blog of Matthias Kretschmann",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"normalize-css": ">=3.0.1",
|
||||
"normalize-opentype.css": ">=0.1.2",
|
||||
"jquery": ">=2.0.3",
|
||||
"picturefill": ">=1.2.1",
|
||||
"masonry": ">=3.1.5",
|
||||
"imagesloaded": ">=3.1.0",
|
||||
"jquery-infinite-scroll": ">=2.0.2",
|
||||
"simple-jekyll-search": ">=1.0.2",
|
||||
"simple-jekyll-search": ">=2.0.0",
|
||||
"jquery.adaptive-background": "https://raw.github.com/briangonzalez/jquery.adaptive-backgrounds.js/master/src/jquery.adaptive-backgrounds.js",
|
||||
"time-elements": ">=0.4.0",
|
||||
"webcomponentsjs": ">=0.6.1"
|
||||
|
@ -7,7 +7,14 @@
|
||||
"scripts": {
|
||||
"postinstall": "bower install && bundle install"
|
||||
},
|
||||
"dependencies": {},
|
||||
"dependencies": {
|
||||
"imagesloaded": ">=3.1.8",
|
||||
"jquery": ">=2.1.4",
|
||||
"masonry-layout": ">=3.3.0",
|
||||
"normalize-css": ">=2.3.1",
|
||||
"normalize-opentype.css": ">=0.2.4",
|
||||
"picturefill": ">=2.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"grunt": ">=0.4.5",
|
||||
"grunt-combine-media-queries": ">=1.0.8",
|
||||
|
Loading…
Reference in New Issue
Block a user