Skip to content

Commit 4207136

Browse files
committed
rebuilding site Sun Feb 19 12:22:55 CST 2017
1 parent 496ee06 commit 4207136

File tree

7 files changed

+381
-0
lines changed

7 files changed

+381
-0
lines changed

index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,28 @@
4141
<section class="section">
4242
<div class="container">
4343

44+
<article>
45+
<h2 class="subtitle is-6">February 19, 2017</h2>
46+
<h1 class="title"><a href="https://elixirscript.github.io/post/elixirscript-0.25.0-released/">Elixirscript 0.25.0 released</a></h1>
47+
48+
<div class="content">
49+
0.25.0 adds some big changes. For a full look at what&rsquo;s new, look at the changelog. Below is a summary of the major changes.
50+
Select module format of output Beginning with this release, the module format of generated JavaScript is selectable. The choices are:
51+
es - ES Modules (default)
52+
common - CommonJS modules
53+
umd - UMD modules
54+
The common options means you can use the output in node without the need for tools like babel.
55+
56+
...<a class="button is-link" href="https://elixirscript.github.io/post/elixirscript-0.25.0-released/" style="height:28px">
57+
Read more
58+
<span class="icon is-small">
59+
<i class="fa fa-angle-double-right"></i>
60+
</span>
61+
</a>
62+
63+
</div>
64+
</article>
65+
4466
</div>
4567
</section>
4668
<section class="section">

index.xml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,62 @@
66
<description>Recent content on Elixirscript</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>en-us</language>
9+
<lastBuildDate>Sun, 19 Feb 2017 11:28:48 -0600</lastBuildDate>
910
<atom:link href="https://elixirscript.github.io/index.xml" rel="self" type="application/rss+xml" />
1011

12+
<item>
13+
<title>Elixirscript 0.25.0 released</title>
14+
<link>https://elixirscript.github.io/post/elixirscript-0.25.0-released/</link>
15+
<pubDate>Sun, 19 Feb 2017 11:28:48 -0600</pubDate>
16+
17+
<guid>https://elixirscript.github.io/post/elixirscript-0.25.0-released/</guid>
18+
<description>
19+
20+
&lt;p&gt;0.25.0 adds some big changes. For a full look at what&amp;rsquo;s new, look at the &lt;a href=&#34;https://github.com/elixirscript/elixirscript/blob/master/CHANGELOG.md&#34;&gt;changelog.&lt;/a&gt; Below is a summary of the major changes.&lt;/p&gt;
21+
22+
&lt;h2 id=&#34;select-module-format-of-output&#34;&gt;Select module format of output&lt;/h2&gt;
23+
24+
&lt;p&gt;Beginning with this release, the module format of generated JavaScript is selectable. The choices are:&lt;/p&gt;
25+
26+
&lt;ul&gt;
27+
&lt;li&gt;&lt;p&gt;es - ES Modules (default)&lt;/p&gt;&lt;/li&gt;
28+
29+
&lt;li&gt;&lt;p&gt;common - CommonJS modules&lt;/p&gt;&lt;/li&gt;
30+
31+
&lt;li&gt;&lt;p&gt;umd - UMD modules&lt;/p&gt;&lt;/li&gt;
32+
&lt;/ul&gt;
33+
34+
&lt;p&gt;The common options means you can use the output in node without the need for tools like babel. The same for UMD in modern browsers (if you use &lt;a href=&#34;http://requirejs.org/&#34;&gt;requirejs&lt;/a&gt; or add in each file in script tags). JS.import is also updated to generate the correct import code for the specified format.&lt;/p&gt;
35+
36+
&lt;h2 id=&#34;dependencies-support-in-mix-projects&#34;&gt;Dependencies support in mix projects&lt;/h2&gt;
37+
38+
&lt;p&gt;This release also brings support for dependencies in mix projects.&lt;/p&gt;
39+
40+
&lt;p&gt;Your mix project must include the &lt;a href=&#34;https://github.com/elixirscript/elixirscript/blob/master/GettingStarted.md#mix-dependency&#34;&gt;elixirscript compiler in its list of compilers&lt;/a&gt;. Dependencies you use must also have the elixirscript compiler in their mix compilers. When you run &amp;ldquo;mix compile&amp;rdquo;, the compiler will compile the elixirscript code in the paths defined in those dependencies with your code.&lt;/p&gt;
41+
42+
&lt;h2 id=&#34;default-compiler-parameters&#34;&gt;Default compiler parameters&lt;/h2&gt;
43+
44+
&lt;p&gt;The elixirscript mix compiler has the following compiler defaults:&lt;/p&gt;
45+
46+
&lt;ul&gt;
47+
&lt;li&gt;&lt;p&gt;input: &amp;ldquo;lib/elixirscript&amp;rdquo;&lt;/p&gt;&lt;/li&gt;
48+
49+
&lt;li&gt;&lt;p&gt;output: &amp;ldquo;priv/elixirscript&amp;rdquo;&lt;/p&gt;&lt;/li&gt;
50+
51+
&lt;li&gt;&lt;p&gt;format: &amp;ldquo;:es&amp;rdquo;&lt;/p&gt;&lt;/li&gt;
52+
&lt;/ul&gt;
53+
54+
&lt;p&gt;These are changeable by adding the &amp;ldquo;elixir_script&amp;rdquo; settings to your mix project.&lt;/p&gt;
55+
56+
&lt;h2 id=&#34;other-announcements&#34;&gt;Other announcements&lt;/h2&gt;
57+
58+
&lt;ul&gt;
59+
&lt;li&gt;&lt;p&gt;Elixirscript now has an &lt;a href=&#34;https://github.com/elixirscript&#34;&gt;organization.&lt;/a&gt; It has all elixirscript-related projects.&lt;/p&gt;&lt;/li&gt;
60+
61+
&lt;li&gt;&lt;p&gt;Elixirscript now has a &lt;a href=&#34;https://gitter.im/elixirscript/elixirscript&#34;&gt;gitter&lt;/a&gt; room. I am still reachable in the &amp;ldquo;elixirscript&amp;rdquo; slack channel on the elixir-lang slack. The gitter room makes sure that conversation history isn&amp;rsquo;t lost allows for integrations.&lt;/p&gt;&lt;/li&gt;
62+
&lt;/ul&gt;
63+
</description>
64+
</item>
65+
1166
</channel>
1267
</rss>
Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="en-us">
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta content="" name="keywords">
7+
<meta content="Elixirscript 0.25.0 released - Elixirscript" property="og:title">
8+
<title>Elixirscript 0.25.0 released | Elixirscript</title>
9+
<link rel="stylesheet" href="https://elixirscript.github.io/css/style.css">
10+
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
11+
12+
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/github.min.css">
13+
14+
15+
<section class="section">
16+
<div class="container">
17+
<nav class="nav">
18+
<div class="nav-left">
19+
<a class="nav-item" href="https://elixirscript.github.io"><h1 class="title is-4">Elixirscript</h1></a>
20+
</div>
21+
<div class="nav-right">
22+
<nav class="nav-item level is-mobile">
23+
24+
<a class="level-item" href="https://github.com/elixirscript">
25+
<span class="icon">
26+
<i class="fa fa-github"></i>
27+
</span>
28+
</a>
29+
30+
<a class="level-item" href="/index.xml">
31+
<span class="icon">
32+
<i class="fa fa-rss"></i>
33+
</span>
34+
</a>
35+
36+
</nav>
37+
</div>
38+
</nav>
39+
</div>
40+
</section>
41+
42+
<section class="section">
43+
<div class="container">
44+
<h2 class="subtitle is-6">February 19, 2017</h2>
45+
<h1 class="title">Elixirscript 0.25.0 released</h1>
46+
47+
<div class="content">
48+
49+
50+
<p>0.25.0 adds some big changes. For a full look at what&rsquo;s new, look at the <a href="https://github.com/elixirscript/elixirscript/blob/master/CHANGELOG.md">changelog.</a> Below is a summary of the major changes.</p>
51+
52+
<h2 id="select-module-format-of-output">Select module format of output</h2>
53+
54+
<p>Beginning with this release, the module format of generated JavaScript is selectable. The choices are:</p>
55+
56+
<ul>
57+
<li><p>es - ES Modules (default)</p></li>
58+
59+
<li><p>common - CommonJS modules</p></li>
60+
61+
<li><p>umd - UMD modules</p></li>
62+
</ul>
63+
64+
<p>The common options means you can use the output in node without the need for tools like babel. The same for UMD in modern browsers (if you use <a href="http://requirejs.org/">requirejs</a> or add in each file in script tags). JS.import is also updated to generate the correct import code for the specified format.</p>
65+
66+
<h2 id="dependencies-support-in-mix-projects">Dependencies support in mix projects</h2>
67+
68+
<p>This release also brings support for dependencies in mix projects.</p>
69+
70+
<p>Your mix project must include the <a href="https://github.com/elixirscript/elixirscript/blob/master/GettingStarted.md#mix-dependency">elixirscript compiler in its list of compilers</a>. Dependencies you use must also have the elixirscript compiler in their mix compilers. When you run &ldquo;mix compile&rdquo;, the compiler will compile the elixirscript code in the paths defined in those dependencies with your code.</p>
71+
72+
<h2 id="default-compiler-parameters">Default compiler parameters</h2>
73+
74+
<p>The elixirscript mix compiler has the following compiler defaults:</p>
75+
76+
<ul>
77+
<li><p>input: &ldquo;lib/elixirscript&rdquo;</p></li>
78+
79+
<li><p>output: &ldquo;priv/elixirscript&rdquo;</p></li>
80+
81+
<li><p>format: &ldquo;:es&rdquo;</p></li>
82+
</ul>
83+
84+
<p>These are changeable by adding the &ldquo;elixir_script&rdquo; settings to your mix project.</p>
85+
86+
<h2 id="other-announcements">Other announcements</h2>
87+
88+
<ul>
89+
<li><p>Elixirscript now has an <a href="https://github.com/elixirscript">organization.</a> It has all elixirscript-related projects.</p></li>
90+
91+
<li><p>Elixirscript now has a <a href="https://gitter.im/elixirscript/elixirscript">gitter</a> room. I am still reachable in the &ldquo;elixirscript&rdquo; slack channel on the elixir-lang slack. The gitter room makes sure that conversation history isn&rsquo;t lost allows for integrations.</p></li>
92+
</ul>
93+
94+
</div>
95+
</div>
96+
</section>
97+
98+
99+
<section class="section">
100+
<div class="container has-text-centered">
101+
<p></p>
102+
</div>
103+
</section>
104+
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/highlight.min.js" integrity="sha256-KbfTjB0WZ8vvXngdpJGY3Yp3xKk+tttbqClO11anCIU=" crossorigin="anonymous"></script>
105+
106+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/languages/elixir.min.js"></script>
107+
108+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/languages/javascript.min.js"></script>
109+
110+
<script>hljs.initHighlightingOnLoad();</script>
111+
112+

post/index.html

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
<!DOCTYPE html>
2+
<html lang="en-us">
3+
<meta charset="UTF-8">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
<meta content="" name="keywords">
6+
<meta content="Posts - Elixirscript" property="og:title">
7+
<title>Posts | Elixirscript</title>
8+
<link rel="stylesheet" href="https://elixirscript.github.io/css/style.css">
9+
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
10+
11+
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/github.min.css">
12+
13+
14+
<section class="section">
15+
<div class="container">
16+
<nav class="nav">
17+
<div class="nav-left">
18+
<a class="nav-item" href="https://elixirscript.github.io"><h1 class="title is-4">Elixirscript</h1></a>
19+
</div>
20+
<div class="nav-right">
21+
<nav class="nav-item level is-mobile">
22+
23+
<a class="level-item" href="https://github.com/elixirscript">
24+
<span class="icon">
25+
<i class="fa fa-github"></i>
26+
</span>
27+
</a>
28+
29+
<a class="level-item" href="/index.xml">
30+
<span class="icon">
31+
<i class="fa fa-rss"></i>
32+
</span>
33+
</a>
34+
35+
</nav>
36+
</div>
37+
</nav>
38+
</div>
39+
</section>
40+
41+
<section class="section">
42+
<div class="container">
43+
44+
<article>
45+
<h2 class="subtitle is-6">February 19, 2017</h2>
46+
<h1 class="title"><a href="https://elixirscript.github.io/post/elixirscript-0.25.0-released/">Elixirscript 0.25.0 released</a></h1>
47+
48+
<div class="content">
49+
0.25.0 adds some big changes. For a full look at what&rsquo;s new, look at the changelog. Below is a summary of the major changes.
50+
Select module format of output Beginning with this release, the module format of generated JavaScript is selectable. The choices are:
51+
es - ES Modules (default)
52+
common - CommonJS modules
53+
umd - UMD modules
54+
The common options means you can use the output in node without the need for tools like babel.
55+
56+
...<a class="button is-link" href="https://elixirscript.github.io/post/elixirscript-0.25.0-released/" style="height:28px">
57+
Read more
58+
<span class="icon is-small">
59+
<i class="fa fa-angle-double-right"></i>
60+
</span>
61+
</a>
62+
63+
</div>
64+
</article>
65+
66+
</div>
67+
</section>
68+
<section class="section">
69+
<div class="container">
70+
<nav class="level is-mobile">
71+
<div class="level-left">
72+
<div class="level-item">
73+
74+
<a class="button is-disabled">
75+
<span class="icon is-small is-marginless">
76+
<i class="fa fa-angle-left"></i>
77+
</span>
78+
Newer
79+
</a>
80+
81+
</div>
82+
</div>
83+
<div class="level-right is-marginless">
84+
<div class="level-item">
85+
86+
<a class="button is-disabled">
87+
Older
88+
<span class="icon is-small is-marginless">
89+
<i class="fa fa-angle-right"></i>
90+
</span>
91+
</a>
92+
93+
</div>
94+
</div>
95+
</nav>
96+
</div>
97+
</section>
98+
99+
<section class="section">
100+
<div class="container has-text-centered">
101+
<p></p>
102+
</div>
103+
</section>
104+
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/highlight.min.js" integrity="sha256-KbfTjB0WZ8vvXngdpJGY3Yp3xKk+tttbqClO11anCIU=" crossorigin="anonymous"></script>
105+
106+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/languages/elixir.min.js"></script>
107+
108+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/languages/javascript.min.js"></script>
109+
110+
<script>hljs.initHighlightingOnLoad();</script>
111+
112+

post/index.xml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
2+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
3+
<channel>
4+
<title>Posts on Elixirscript</title>
5+
<link>https://elixirscript.github.io/post/index.xml</link>
6+
<description>Recent content in Posts on Elixirscript</description>
7+
<generator>Hugo -- gohugo.io</generator>
8+
<language>en-us</language>
9+
<lastBuildDate>Sun, 19 Feb 2017 11:28:48 -0600</lastBuildDate>
10+
<atom:link href="https://elixirscript.github.io/post/index.xml" rel="self" type="application/rss+xml" />
11+
12+
<item>
13+
<title>Elixirscript 0.25.0 released</title>
14+
<link>https://elixirscript.github.io/post/elixirscript-0.25.0-released/</link>
15+
<pubDate>Sun, 19 Feb 2017 11:28:48 -0600</pubDate>
16+
17+
<guid>https://elixirscript.github.io/post/elixirscript-0.25.0-released/</guid>
18+
<description>
19+
20+
&lt;p&gt;0.25.0 adds some big changes. For a full look at what&amp;rsquo;s new, look at the &lt;a href=&#34;https://github.com/elixirscript/elixirscript/blob/master/CHANGELOG.md&#34;&gt;changelog.&lt;/a&gt; Below is a summary of the major changes.&lt;/p&gt;
21+
22+
&lt;h2 id=&#34;select-module-format-of-output&#34;&gt;Select module format of output&lt;/h2&gt;
23+
24+
&lt;p&gt;Beginning with this release, the module format of generated JavaScript is selectable. The choices are:&lt;/p&gt;
25+
26+
&lt;ul&gt;
27+
&lt;li&gt;&lt;p&gt;es - ES Modules (default)&lt;/p&gt;&lt;/li&gt;
28+
29+
&lt;li&gt;&lt;p&gt;common - CommonJS modules&lt;/p&gt;&lt;/li&gt;
30+
31+
&lt;li&gt;&lt;p&gt;umd - UMD modules&lt;/p&gt;&lt;/li&gt;
32+
&lt;/ul&gt;
33+
34+
&lt;p&gt;The common options means you can use the output in node without the need for tools like babel. The same for UMD in modern browsers (if you use &lt;a href=&#34;http://requirejs.org/&#34;&gt;requirejs&lt;/a&gt; or add in each file in script tags). JS.import is also updated to generate the correct import code for the specified format.&lt;/p&gt;
35+
36+
&lt;h2 id=&#34;dependencies-support-in-mix-projects&#34;&gt;Dependencies support in mix projects&lt;/h2&gt;
37+
38+
&lt;p&gt;This release also brings support for dependencies in mix projects.&lt;/p&gt;
39+
40+
&lt;p&gt;Your mix project must include the &lt;a href=&#34;https://github.com/elixirscript/elixirscript/blob/master/GettingStarted.md#mix-dependency&#34;&gt;elixirscript compiler in its list of compilers&lt;/a&gt;. Dependencies you use must also have the elixirscript compiler in their mix compilers. When you run &amp;ldquo;mix compile&amp;rdquo;, the compiler will compile the elixirscript code in the paths defined in those dependencies with your code.&lt;/p&gt;
41+
42+
&lt;h2 id=&#34;default-compiler-parameters&#34;&gt;Default compiler parameters&lt;/h2&gt;
43+
44+
&lt;p&gt;The elixirscript mix compiler has the following compiler defaults:&lt;/p&gt;
45+
46+
&lt;ul&gt;
47+
&lt;li&gt;&lt;p&gt;input: &amp;ldquo;lib/elixirscript&amp;rdquo;&lt;/p&gt;&lt;/li&gt;
48+
49+
&lt;li&gt;&lt;p&gt;output: &amp;ldquo;priv/elixirscript&amp;rdquo;&lt;/p&gt;&lt;/li&gt;
50+
51+
&lt;li&gt;&lt;p&gt;format: &amp;ldquo;:es&amp;rdquo;&lt;/p&gt;&lt;/li&gt;
52+
&lt;/ul&gt;
53+
54+
&lt;p&gt;These are changeable by adding the &amp;ldquo;elixir_script&amp;rdquo; settings to your mix project.&lt;/p&gt;
55+
56+
&lt;h2 id=&#34;other-announcements&#34;&gt;Other announcements&lt;/h2&gt;
57+
58+
&lt;ul&gt;
59+
&lt;li&gt;&lt;p&gt;Elixirscript now has an &lt;a href=&#34;https://github.com/elixirscript&#34;&gt;organization.&lt;/a&gt; It has all elixirscript-related projects.&lt;/p&gt;&lt;/li&gt;
60+
61+
&lt;li&gt;&lt;p&gt;Elixirscript now has a &lt;a href=&#34;https://gitter.im/elixirscript/elixirscript&#34;&gt;gitter&lt;/a&gt; room. I am still reachable in the &amp;ldquo;elixirscript&amp;rdquo; slack channel on the elixir-lang slack. The gitter room makes sure that conversation history isn&amp;rsquo;t lost allows for integrations.&lt;/p&gt;&lt;/li&gt;
62+
&lt;/ul&gt;
63+
</description>
64+
</item>
65+
66+
</channel>
67+
</rss>

post/page/1/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!DOCTYPE html><html><head><title>https://elixirscript.github.io/post/</title><link rel="canonical" href="https://elixirscript.github.io/post/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0; url=https://elixirscript.github.io/post/" /></head></html>

0 commit comments

Comments
 (0)