Skip to content

Commit

Permalink
feat(build): Moved to parcel
Browse files Browse the repository at this point in the history
  • Loading branch information
FranklinWaller committed Oct 19, 2019
1 parent 157b9ea commit b3e2db8
Show file tree
Hide file tree
Showing 25 changed files with 8,471 additions and 15,413 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jspm_packages
.node_repl_history

build
dist

.eslintcache

node_modules
.cache
3 changes: 3 additions & 0 deletions .postcssrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"modules": true
}
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
<title>PlayOS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<!-- <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<!-- <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> -->
<!-- <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> -->
<!-- <link rel="manifest" href="./manifest.webmanifest"> -->
<!-- <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> -->
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div id="app"></div>
<script src="build/index.js" charset="utf-8"></script>
<script src="./index.js" charset="utf-8"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'whatwg-fetch';
import 'babel-polyfill';
// import injectTapEventPlugin from 'react-tap-event-plugin';
import App from './src/js/App.jsx';
import App from './src/js/App';
import './src/scss/index.scss';
// import Sdk from '../SDK';
import InstanceBag from './src/js/InstanceBag';
Expand Down
21 changes: 0 additions & 21 deletions index.parcel.html

This file was deleted.

Empty file removed manifest.json
Empty file.
3 changes: 3 additions & 0 deletions manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"short_name": "PlayOS"
}
Loading

0 comments on commit b3e2db8

Please sign in to comment.