Skip to content

Commit 50c347e

Browse files
committed
♻️ clean time
1 parent 9d8af44 commit 50c347e

1,716 files changed

Lines changed: 372 additions & 397578 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.babelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["es2015"]
3+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,4 @@ TODO.md
5454
metis_backup
5555
google.json
5656
adsense.hbs
57+
.tmp

assemblefile.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
var assemble = require('assemble');
44
var extname = require('gulp-extname');
55
var path = require('path');
6+
var browserSync = require('browser-sync').create();
67
var helpers = require('handlebars-helpers');
78
var compare = helpers.comparison();
89
var pkg = require('./package');
@@ -14,7 +15,7 @@ app.task('init', function(cb) {
1415
app.helper('is', compare);
1516
app.helper('markdown', require('helper-markdown'));
1617
app.data('pkg', pkg);
17-
app.data('dist','dist');
18+
app.data('dist', 'dist');
1819
app.data(['./src/templates/data/**/*.{json,yml}']);
1920
// app.data('analytic','UA-23581568-13');
2021
app.layouts(path.join(__dirname, './src/templates/layouts/*.hbs'));
@@ -30,17 +31,19 @@ app.task('html:rtl', ['init'], function() {
3031
return app.toStream('pages')
3132
.pipe(app.renderFile())
3233
.pipe(extname())
33-
.pipe(app.dest('public/rtl'));
34+
.pipe(app.dest('public/rtl'))
35+
.pipe(browserSync.stream());
3436
});
3537

3638
app.task('html', ['init'], function() {
3739
app.data('assets', 'assets');
3840
return app.toStream('pages')
3941
.pipe(app.renderFile())
4042
.pipe(extname())
41-
.pipe(app.dest('public'));
43+
.pipe(app.dest('public'))
44+
.pipe(browserSync.stream());
4245
});
4346

44-
app.task('default', ['html', 'html:rtl']);
47+
app.task('default', ['html']);
4548

4649
module.exports = app;

bower.json

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
{
2-
"name": "Bootstrap-Admin-Template",
3-
"description": "Twitter Bootstrap Admin Template",
4-
"homepage": "https://github.com/onokumus/Bootstrap-Admin-Template",
5-
"authors": [
6-
"onokumus <onokumus@gmail.com>"
7-
],
8-
"repository": {
9-
"type": "git",
10-
"url": "https://github.com/onokumus/Bootstrap-Admin-Template.git"
11-
},
12-
"main": "dist/index.html",
13-
"moduleType": [
14-
"node"
15-
],
16-
"keywords": [
17-
"twbs",
18-
"assemble",
19-
"grunt",
20-
"less",
21-
"admin",
22-
"template",
23-
"twitter bootstrap"
24-
],
25-
"license": "MIT",
26-
"ignore": [
27-
"node_modules",
28-
"bower_components",
29-
"test",
30-
"tests",
31-
"dist"
32-
],
33-
"devDependencies": {
34-
"pagedown-bootstrap": "https://github.com/kevinoconnor7/pagedown-bootstrap/archive/v1.1.zip",
35-
"formwizard": "https://github.com/thecodemine/formwizard/archive/v3.0.7.zip",
36-
"html5shiv": "~3.7.2",
37-
"respond": "~1.4.2",
38-
"gmaps": "~0.4.16",
39-
"jquery-mousewheel": "~3.1.12",
40-
"bootstrap-daterangepicker": "~1.3.17",
41-
"jQuery.validVal": "~5.0.2",
42-
"jquery.gritter": "~1.7.4",
43-
"plupload": "~2.1.2",
44-
"bootstrap-switch": "~3.3.2",
45-
"kbwood_countdown": "git://github.com/kbwood/countdown.git#2.0.1",
46-
"jquery-inputlimiter": "https://jquery-inputlimiter.googlecode.com/files/jquery-inputlimiter.1.3.1.zip",
47-
"bootstrap-duallistbox": "~3.0.2",
48-
"fullcalendar": "~2.2.6",
49-
"bootstrap3-wysihtml5-bower": "~0.3.3",
50-
"jquery-validation": "~1.13.1"
51-
}
2+
"name": "bootstrap-admin-template",
3+
"description": "Twitter Bootstrap Admin Template",
4+
"authors": [
5+
"puikinsh (http://github.com/puikinsh/)"
6+
],
7+
"homepage": "https://github.com/puikinsh/Bootstrap-Admin-Template",
8+
"repository": {
9+
"type": "git",
10+
"url": "git://github.com/puikinsh/Bootstrap-Admin-Template.git"
11+
},
12+
"main": [
13+
"dist/core.js",
14+
"dist/main.css"
15+
],
16+
"moduleType": [
17+
"globals"
18+
],
19+
"keywords": [
20+
"twbs",
21+
"assemble",
22+
"grunt",
23+
"less",
24+
"admin",
25+
"template",
26+
"twitter bootstrap"
27+
],
28+
"license": "MIT",
29+
"ignore": [
30+
"node_modules",
31+
"bower_components",
32+
"test",
33+
"tests",
34+
"dist"
35+
],
36+
"devDependencies": {
37+
"pagedown-bootstrap": "https://github.com/kevinoconnor7/pagedown-bootstrap/archive/v1.1.zip",
38+
"formwizard": "https://github.com/thecodemine/formwizard/archive/v3.0.7.zip",
39+
"jquery-mousewheel": "~3.1.12",
40+
"bootstrap-daterangepicker": "~1.3.17",
41+
"jQuery.validVal": "~5.0.2",
42+
"jquery.gritter": "~1.7.4",
43+
"plupload": "~2.1.2",
44+
"bootstrap-switch": "~3.3.2",
45+
"kbwood_countdown": "git://github.com/kbwood/countdown.git#2.0.1",
46+
"jquery-inputlimiter": "https://jquery-inputlimiter.googlecode.com/files/jquery-inputlimiter.1.3.1.zip",
47+
"bootstrap3-wysihtml5-bower": "~0.3.3"
48+
},
49+
"dependencies": {
50+
"bootstrap3-wysihtml5-bower": "^0.3.3"
51+
}
5252
}

dist/assets/css/countdown.css

Lines changed: 0 additions & 127 deletions
This file was deleted.

0 commit comments

Comments
 (0)