Skip to content
This repository was archived by the owner on Aug 3, 2021. It is now read-only.

Commit 6e083f7

Browse files
committed
Renaming Project to something not stupid.
1 parent 2a4e65f commit 6e083f7

File tree

9 files changed

+517
-172
lines changed

9 files changed

+517
-172
lines changed

Gulpfile.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ var plugins = require('gulp-load-plugins')();
44
var browserSync = require('browser-sync').create();
55

66
var paths = {
7-
dist: 'dist/',
8-
src: 'src/',
7+
dist: 'examples/',
8+
src: 'logjam.scss',
99
};
1010

1111

1212
gulp.task('styles', function () {
13-
gulp.src(paths.src + '**/*.scss')
13+
gulp.src(paths.src)
1414
.pipe(plugins.sass().on('error', plugins.sass.logError))
1515
.pipe(plugins.autoprefixer({
1616
browsers: ['IE 10','last 4 versions'],
@@ -21,7 +21,7 @@ gulp.task('styles', function () {
2121
});
2222

2323
gulp.task('html', function () {
24-
gulp.src(paths.src + 'layout-examples/index.html')
24+
gulp.src('examples/index.html')
2525
.pipe(gulp.dest(paths.dist));
2626
});
2727

@@ -30,6 +30,6 @@ gulp.task('default', ['html','styles'], function() {
3030
server: paths.dist
3131
});
3232

33-
gulp.watch(paths.src + "*.scss", ['styles']);
34-
gulp.watch(paths.src + "*.html", ['html']).on('change', browserSync.reload);
33+
gulp.watch(paths.src, ['styles']);
34+
gulp.watch('examples/index.html', ['html']).on('change', browserSync.reload);
3535
});

src/layout-examples/_layout-holy-grail.scss renamed to examples/_layout-holy-grail.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ $holy-grail: (
4848
top: true
4949
)
5050
),
51-
secondary-nav: (
51+
nav: (
5252
grow: 1,
5353
shrink: 1,
5454
basis: 100%,
@@ -114,7 +114,7 @@ $holy-grail: (
114114
top: true
115115
)
116116
),
117-
secondary-nav: (
117+
nav: (
118118
grow: 0,
119119
shrink: 0,
120120
basis: $layout-sidebar,
@@ -179,7 +179,7 @@ $holy-grail: (
179179
top: true
180180
)
181181
),
182-
secondary-nav: (
182+
nav: (
183183
grow: 0,
184184
shrink: 0,
185185
basis: $layout-sidebar,
@@ -220,4 +220,4 @@ $holy-grail: (
220220
)
221221
);
222222

223-
@include semantic-layout($holy-grail);
223+
@include logjam($holy-grail);

dist/index.html renamed to examples/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</article>
3434
</main>
3535

36-
<nav data-area="secondary-nav">
36+
<nav data-area="nav">
3737
<div class="wrapper">
3838
Secondary Menu
3939
<ul>

0 commit comments

Comments
 (0)