Skip to content

Commit

Permalink
demo: fix demo src
Browse files Browse the repository at this point in the history
  • Loading branch information
daybrush committed Mar 31, 2019
1 parent 829c88a commit 0e08455
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion demo.js
Expand Up @@ -5,7 +5,7 @@ module.exports = {
input: "demo/src/index.ts",
output: {
sourcemap: true,
uglify: false,
uglify: true,
banner: banner,
file: "./demo/dist/index.js",
css: "./demo/dist/index.css",
Expand Down
4 changes: 2 additions & 2 deletions demo/index.html
Expand Up @@ -275,8 +275,8 @@ <h2>Getting Started</h2>
</div>
</footer>
</body>
<script src="./release/latest/dist/scene.js"></script>
<script src="https://daybrush.com/media-scene/release/latest/dist/mediascene.js"></script>
<script src="./release/latest/dist/scene.min.js"></script>
<script src="https://daybrush.com/media-scene/release/latest/dist/mediascene.min.js"></script>
<script src="./dist/index.js"></script>

</html>
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -25,7 +25,7 @@
"doc": "rm -rf ./doc && jsdoc -c jsdoc.json",
"demo:start": "demo demo.js -w",
"demo:build": "rm -rf ./demo/dist && demo demo.js",
"release": "npm run build && npm run demo:build && release",
"release": "npm run build && npm run doc && npm run demo:build && release --dirs dist,doc,examples",
"release:build": "npm run build && prerelease"
},
"repository": {
Expand Down

0 comments on commit 0e08455

Please sign in to comment.