Skip to content

Commit 92653f9

Browse files
committed
initial files
1 parent 1c38518 commit 92653f9

21 files changed

+901
-1
lines changed

Gulpfile.js

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
var gulp = require('gulp');
2+
var browserSync = require('browser-sync');
3+
var sass = require('gulp-sass');
4+
var rename = require('gulp-rename');
5+
var reload = browserSync.reload;
6+
7+
module.exports = gulp;
8+
9+
gulp.task('browser-sync', function() {
10+
browserSync({
11+
port: 3040,
12+
server: {
13+
baseDir: "./",
14+
directory: true
15+
}
16+
});
17+
});
18+
19+
gulp.task('sass', function() {
20+
return gulp.src('src/**/*.scss')
21+
.pipe(sass({
22+
outputStyle: 'expanded'
23+
}).on('error', sass.logError))
24+
.pipe(gulp.dest('src/'))
25+
.pipe(sass({
26+
outputStyle: 'compressed'
27+
}))
28+
.pipe(rename({
29+
suffix: '.min'
30+
}))
31+
.pipe(gulp.dest('src/'))
32+
.pipe(browserSync.reload({
33+
stream: true
34+
}));
35+
});
36+
37+
gulp.task('bs-reload', function() {
38+
browserSync.reload();
39+
});
40+
41+
gulp.task('default', ['sass', 'browser-sync'], function() {
42+
gulp.watch("src/**/*.scss", ['sass', 'bs-reload']);
43+
});

README.markdown

-1
This file was deleted.

README.md

Whitespace-only changes.

bower.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "PrettyCheckbox",
3+
"description": "Scalable css3 pretty checkbox and radio buttons",
4+
"main": "Gulpfile.js",
5+
"moduleType": [
6+
"node"
7+
],
8+
"license": "MIT",
9+
"homepage": "https://lokesh-coder/github.io/pretty-checkbox",
10+
"private": true,
11+
"ignore": [
12+
"**/.*",
13+
"node_modules",
14+
"bower_components",
15+
"test",
16+
"tests"
17+
],
18+
"dependencies": {
19+
"animate-sass": "~0.6.4",
20+
"bootstrap-sass": "~3.3.6",
21+
"mdi": "^1.5.54"
22+
}
23+
}

package.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "PrettyCheckbox",
3+
"version": "1.0.0",
4+
"description": "Scalable css3 pretty checkbox and radio buttons",
5+
"main": "Gulpfile.js",
6+
"dependencies": {
7+
8+
},
9+
"devDependencies": {
10+
"gulp-rename": "^1.2.2",
11+
"gulp-sass": "^2.2.0",
12+
"bower": "^1.5.1",
13+
"browser-sync": "^2.8.2",
14+
"gulp": "^3.9.0",
15+
"gulp-compass": "^2.1.0",
16+
"gulp-sass": "^2.3.1",
17+
"node-sass": "^3.7.0"
18+
},
19+
"scripts": {},
20+
"repository": {
21+
"type": "git",
22+
"url": "https://github.com/lokesh-coder/pretty-checkbox"
23+
},
24+
"keywords": [
25+
"one",
26+
"page",
27+
"app"
28+
],
29+
"author": "lokesh",
30+
"license": "MIT",
31+
"bugs": {
32+
"url": "https://github.com/lokesh-coder/pretty-checkbox/issues"
33+
},
34+
"homepage": "https://lokesh-coder.github.io/pretty-checkbox"
35+
}

0 commit comments

Comments
 (0)