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

Commit 707fdd2

Browse files
committed
Merge branch 'release/v0.5.2'
2 parents c344527 + b9cd9cb commit 707fdd2

File tree

10 files changed

+1955
-2954
lines changed

10 files changed

+1955
-2954
lines changed

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_STORE
2+
npm-debug.log
3+
node_modules
4+
build
5+
coverage

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## 0.5.2
2+
3+
Replaces gulp with NPM scripts.
4+
5+
## 0.5.1
6+
7+
Initial release.

examples/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This folder contains an example of using Remixer in a simple web app.
44

55
## Quickstart
66

7-
1. Run `npm install` or `yarn` within this folder.
8-
2. Run `gulp serve` to start the demo server.
9-
3. The demo should open in new window. If not, navigate to [http://localhost:8000/](http://localhost:8000/) to view it.
7+
1. Run `npm install` within this folder.
8+
2. Run `npm start` to start the demo server.
9+
3. The demo should open in new window. If not, navigate to [http://localhost:8080/](http://localhost:8080/) to view it.
1010
4. Hit `ESC` key to toggle Remixer overlay visibility.

examples/gulpfile.js

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

examples/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
22
"name": "material-remixer-examples",
3-
"version": "0.5.0",
3+
"version": "0.0.1",
44
"description": "Example app demonstrating usage of Remixer.",
55
"author": "The Material Remixer Authors (see AUTHORS)",
66
"license": "Apache-2.0",
77
"scripts": {
8-
"start": "$( yarn bin )/gulp serve"
8+
"start": "$( yarn bin )/http-server -o"
99
},
1010
"devDependencies": {
11-
"gulp": "^3.9.1",
12-
"gulp-webserver": "^0.9.1"
11+
"http-server": "^0.9.0"
1312
},
1413
"dependencies": {
1514
"material-design-lite": "^1.2.1",

0 commit comments

Comments
 (0)