Skip to content

Commit

Permalink
Rename build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
ku1ik committed Nov 5, 2016
1 parent 85b49c6 commit 7e1616e
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* Fixed `<asciinema-player>` element loading under Chrome
* Upgraded Reagent (and thus React) dependency
* Changed paths of build artifacts

## 2.3.0 (2016-10-02)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ To build stand-alone `.js` and `.css` files run:
lein cljsbuild once release
lein less once

This produces `resources/public/js/release.js` and `resources/public/css/main.css`.
This produces `resources/public/js/asciinema-player.js` and `resources/public/css/asciinema-player.css`.

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
:pretty-print false
:main "asciinema.player.runner"}}
:release {:source-paths ["src"]
:compiler {:output-to "resources/public/js/release.js"
:compiler {:output-to "resources/public/js/asciinema-player.js"
:output-dir "resources/public/js/release"
:preamble ["license.js" "public/CustomEvent.js" "public/CustomElements.min.js"]
:foreign-libs [{:file "public/element.js"
Expand Down
2 changes: 1 addition & 1 deletion resources/public/cards.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta charset="UTF-8">
<link href="/css/main.css" rel="stylesheet" type="text/css">
<link href="/css/asciinema-player.css" rel="stylesheet" type="text/css">
</head>
<body>
<script src="/js/devcards.js" type="text/javascript"></script>
Expand Down
2 changes: 1 addition & 1 deletion resources/public/element.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<link href="css/main.css" rel="stylesheet" type="text/css">
<link href="css/asciinema-player.css" rel="stylesheet" type="text/css">
<style>
body { background-color: #666; }
</style>
Expand Down
2 changes: 1 addition & 1 deletion resources/public/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<link href="css/main.css" rel="stylesheet" type="text/css">
<link href="css/asciinema-player.css" rel="stylesheet" type="text/css">
<style>
body { background-color: #666; }
</style>
Expand Down
4 changes: 2 additions & 2 deletions resources/public/release-element.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<link href="css/main.css" rel="stylesheet" type="text/css">
<link href="css/asciinema-player.css" rel="stylesheet" type="text/css">
<style>
body { background-color: #666; }
</style>
Expand All @@ -19,6 +19,6 @@

<p>Text</p>

<script src="/js/release.js" type="text/javascript"></script>
<script src="/js/asciinema-player.js" type="text/javascript"></script>
</body>
</html>
4 changes: 2 additions & 2 deletions resources/public/release.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<link href="css/main.css" rel="stylesheet" type="text/css">
<link href="css/asciinema-player.css" rel="stylesheet" type="text/css">
<style>
body { background-color: #666; }
</style>
</head>
<body>
<div id="player"></div>
<script src="/js/release.js" type="text/javascript"></script>
<script src="/js/asciinema-player.js" type="text/javascript"></script>
<script type="text/javascript">
asciinema.player.js.CreatePlayer(
'player',
Expand Down
2 changes: 1 addition & 1 deletion resources/public/usage.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<link href="css/main.css" rel="stylesheet" type="text/css">
<link href="css/asciinema-player.css" rel="stylesheet" type="text/css">
<style>
body { background-color: #666; }
</style>
Expand Down
File renamed without changes.

0 comments on commit 7e1616e

Please sign in to comment.