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
10
Gruntfile.js
10
Gruntfile.js
@ -104,16 +104,16 @@ module.exports = function(grunt){
|
|||||||
production: {
|
production: {
|
||||||
files: {
|
files: {
|
||||||
'<%= config.site %>/<%= config.assets.js %>/picturefill.min.js': [
|
'<%= 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': [
|
'<%= config.site %>/<%= config.assets.js %>/CustomElements.min.js': [
|
||||||
'bower_components/webcomponentsjs/CustomElements.js'
|
'bower_components/webcomponentsjs/CustomElements.js'
|
||||||
],
|
],
|
||||||
'<%= config.site %>/<%= config.assets.js %>/kremalicious3.min.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/jquery-infinite-scroll/jquery.infinitescroll.js',
|
||||||
'bower_components/masonry/dist/masonry.pkgd.js',
|
'node_modules/masonry-layout/dist/masonry.pkgd.js',
|
||||||
'bower_components/imagesloaded/imagesloaded.js',
|
'node_modules/imagesloaded/imagesloaded.js',
|
||||||
'bower_components/simple-jekyll-search/dest/jekyll-search.js',
|
'bower_components/simple-jekyll-search/dest/jekyll-search.js',
|
||||||
'bower_components/jquery.adaptive-background/index.js',
|
'bower_components/jquery.adaptive-background/index.js',
|
||||||
'bower_components/time-elements/time-elements.js',
|
'bower_components/time-elements/time-elements.js',
|
||||||
@ -342,4 +342,4 @@ module.exports = function(grunt){
|
|||||||
'rsync:deploy'
|
'rsync:deploy'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
|
|
||||||
|
|
||||||
// Normalize all the things
|
// Normalize all the things
|
||||||
@import '../../../bower_components/normalize-css/normalize.css'
|
@import '../../../node_modules/normalize-css/normalize.css'
|
||||||
@import '../../../bower_components/normalize-opentype.css/normalize-opentype.css'
|
@import '../../../node_modules/normalize-opentype.css/normalize-opentype.css'
|
||||||
|
|
||||||
// Nib Nib
|
// Nib Nib
|
||||||
@import 'nib'
|
@import 'nib'
|
||||||
|
@ -8,14 +8,8 @@
|
|||||||
"description": "Blog of Matthias Kretschmann",
|
"description": "Blog of Matthias Kretschmann",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"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",
|
"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",
|
"jquery.adaptive-background": "https://raw.github.com/briangonzalez/jquery.adaptive-backgrounds.js/master/src/jquery.adaptive-backgrounds.js",
|
||||||
"time-elements": ">=0.4.0",
|
"time-elements": ">=0.4.0",
|
||||||
"webcomponentsjs": ">=0.6.1"
|
"webcomponentsjs": ">=0.6.1"
|
||||||
|
@ -7,7 +7,14 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"postinstall": "bower install && bundle install"
|
"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": {
|
"devDependencies": {
|
||||||
"grunt": ">=0.4.5",
|
"grunt": ">=0.4.5",
|
||||||
"grunt-combine-media-queries": ">=1.0.8",
|
"grunt-combine-media-queries": ">=1.0.8",
|
||||||
|
Loading…
Reference in New Issue
Block a user