Skip to content

Commit 01aedfb

Browse files
author
Stefania
committed
rename test to demo
1 parent 417fbde commit 01aedfb

File tree

7 files changed

+4
-7
lines changed

7 files changed

+4
-7
lines changed

test/app.jsx renamed to demo/app.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ class App extends React.Component {
203203

204204
return (
205205
<div>
206-
<h1>Test Arduino Create Plugin</h1>
206+
<h1>Arduino Create Plugin Client Demo</h1>
207207

208208
<div className="section">
209209
<h2>Plugin info</h2>

test/index.html renamed to demo/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<meta charset="UTF-8">
2323
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2424
<meta http-equiv="X-UA-Compatible" content="ie=edge">
25-
<title>Test Arduino Create Plugin</title>
25+
<title>Arduino Create Plugin Client</title>
2626
<style>
2727
body {
2828
color: #2c353a;
File renamed without changes.
File renamed without changes.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
},
5252
"scripts": {
5353
"test": "",
54-
"dev": "webpack-dev-server",
54+
"dev": "webpack-dev-server --https",
5555
"lint": "./node_modules/.bin/eslint src",
5656
"lint-fix": "./node_modules/.bin/eslint --fix src --ext .js",
5757
"clean": "rimraf lib dist es",

test/.babelrc

-3
This file was deleted.

webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const path = require('path');
22
const HtmlWebpackPlugin = require('html-webpack-plugin');
33
// const CleanWebpackPlugin = require('clean-webpack-plugin');
44

5-
const src = path.join(__dirname, 'test');
5+
const src = path.join(__dirname, 'demo');
66
const dist = path.join(__dirname, '.tmp');
77

88
module.exports = {

0 commit comments

Comments
 (0)