Skip to content

Commit

Permalink
update build
Browse files Browse the repository at this point in the history
  • Loading branch information
ardean committed May 26, 2018
1 parent 8061fcf commit 1d96064
Show file tree
Hide file tree
Showing 40 changed files with 7,121 additions and 6,176 deletions.
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
.DS_Store
node_modules
jspm_packages
/node_modules
/bower_components
*.log
/index.js
/index.html
/index.css
14 changes: 0 additions & 14 deletions .vscode/launch.json

This file was deleted.

15 changes: 0 additions & 15 deletions .vscode/tasks.json

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 ardean
Copyright (c) 2018 ardean

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@

[Demo](https://ardean.github.io/jsGBC-web/)

## Setup

```bash
> bower i
> yarn install
> yarn start
```

## License

[MIT](LICENSE.md)
Expand Down
9 changes: 5 additions & 4 deletions assets/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "jsGBC",
"icons": [{
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
Expand All @@ -11,7 +12,7 @@
"type": "image/png"
}
],
"theme_color": "#f5f5f5",
"background_color": "#f5f5f5",
"theme_color": "#477c59",
"background_color": "#477c59",
"display": "fullscreen"
}
}
5 changes: 2 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"tests"
],
"dependencies": {
"jsgbc-ui": "jsGBC-ui#v0.2.2",
"paper-fab-speed-dial": "^1.0.16"
"jsgbc-ui": "jsGBC-ui#v0.2.2"
}
}
}
6 changes: 1 addition & 5 deletions build/tasks/css.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
const gulp = require("gulp");

gulp.task("build-css", () => {
return gulp.src("src/index.css").pipe(gulp.dest("docs"));
});

gulp.task("build-css-dev", () => {
return gulp.src("src/index.css").pipe(gulp.dest("./"));
return gulp.src("styles/index.css").pipe(gulp.dest("docs/styles"));
});
3 changes: 0 additions & 3 deletions build/tasks/dev.js

This file was deleted.

20 changes: 0 additions & 20 deletions build/tasks/html.js

This file was deleted.

2 changes: 1 addition & 1 deletion build/tasks/webcomponents.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const gulp = require("gulp");
const vulcanize = require("gulp-vulcanize");

gulp.task("build-webcomponents", ["build-html"], () => {
gulp.task("build-webcomponents", () => {
return gulp
.src("index.html")
.pipe(
Expand Down
11 changes: 0 additions & 11 deletions dev-server/index.js

This file was deleted.

15 changes: 0 additions & 15 deletions docs/index.css

This file was deleted.

Loading

0 comments on commit 1d96064

Please sign in to comment.