Deploy website

Deploy website version based on 490cbfa8a771584d2e5c2f0c5e96172da9d1679b
This commit is contained in:
Website Deployment Script
2019-12-02 11:54:46 +00:00
parent ed6d9f7eec
commit 4d88faecc4
4 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -267,7 +267,7 @@
<h3><a class="anchor" aria-hidden="true" id="loop"></a><a href="#loop" aria-hidden="true" class="hash-link"><svg class="hash-link-icon" aria-hidden="true" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a><code>loop()</code></h3>
<pre><code class="hljs css language-jsx"><span class="token keyword">static</span> <span class="token function">loop</span><span class="token punctuation">(</span>animation<span class="token punctuation">,</span> config<span class="token operator">?</span><span class="token punctuation">)</span>
</code></pre>
<p>Loops a given animation continuously, so that each time it reaches the end, it resets and begins again from the start. Will loop without blocking the UI thread if the child animation is set to <code>useNativeDriver: true</code>. In addition, loops can prevent <code>VirtualizedList</code>-based components from rendering more rows while the animation is running. You can pass <code>isInteraction: false</code> in the child animation config to fix this.</p>
<p>Loops a given animation continuously, so that each time it reaches the end, it resets and begins again from the start. Will loop without blocking the JS thread if the child animation is set to <code>useNativeDriver: true</code>. In addition, loops can prevent <code>VirtualizedList</code>-based components from rendering more rows while the animation is running. You can pass <code>isInteraction: false</code> in the child animation config to fix this.</p>
<p>Config is an object that may have the following options:</p>
<ul>
<li><code>iterations</code>: Number of times the animation should loop. Default <code>-1</code> (infinite).</li>
+1 -1
View File
@@ -267,7 +267,7 @@
<h3><a class="anchor" aria-hidden="true" id="loop"></a><a href="#loop" aria-hidden="true" class="hash-link"><svg class="hash-link-icon" aria-hidden="true" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a><code>loop()</code></h3>
<pre><code class="hljs css language-jsx"><span class="token keyword">static</span> <span class="token function">loop</span><span class="token punctuation">(</span>animation<span class="token punctuation">,</span> config<span class="token operator">?</span><span class="token punctuation">)</span>
</code></pre>
<p>Loops a given animation continuously, so that each time it reaches the end, it resets and begins again from the start. Will loop without blocking the UI thread if the child animation is set to <code>useNativeDriver: true</code>. In addition, loops can prevent <code>VirtualizedList</code>-based components from rendering more rows while the animation is running. You can pass <code>isInteraction: false</code> in the child animation config to fix this.</p>
<p>Loops a given animation continuously, so that each time it reaches the end, it resets and begins again from the start. Will loop without blocking the JS thread if the child animation is set to <code>useNativeDriver: true</code>. In addition, loops can prevent <code>VirtualizedList</code>-based components from rendering more rows while the animation is running. You can pass <code>isInteraction: false</code> in the child animation config to fix this.</p>
<p>Config is an object that may have the following options:</p>
<ul>
<li><code>iterations</code>: Number of times the animation should loop. Default <code>-1</code> (infinite).</li>
+4 -2
View File
@@ -221,7 +221,8 @@ export <span class="hljs-keyword">default</span> Hello;
<span class="hljs-addition">+ "baseUrl": ".",</span>
<span class="hljs-addition">+ "paths": {</span>
<span class="hljs-addition">+ "*": ["src/*"],</span>
<span class="hljs-addition">+ "tests": ["tests/*"]</span>
<span class="hljs-addition">+ "tests": ["tests/*"],</span>
<span class="hljs-addition">+ "@components/*": ["src/components/*"],</span>
<span class="hljs-addition">+ },</span>
}
</code></pre>
@@ -243,7 +244,8 @@ npm install --save-dev babel-plugin-module-resolver
<span class="hljs-addition">+ root: ['./src'],</span>
<span class="hljs-addition">+ extensions: ['.ios.js', '.android.js', '.js', '.ts', '.tsx', '.json'],</span>
<span class="hljs-addition">+ alias: {</span>
<span class="hljs-addition">+ "test/*": ["./test/"]</span>
<span class="hljs-addition">+ "tests": ["./tests/"],</span>
<span class="hljs-addition">+ "@components": "./src/components",</span>
<span class="hljs-addition">+ }</span>
<span class="hljs-addition">+ }</span>
<span class="hljs-addition">+ ]</span>
+4 -2
View File
@@ -221,7 +221,8 @@ export <span class="hljs-keyword">default</span> Hello;
<span class="hljs-addition">+ "baseUrl": ".",</span>
<span class="hljs-addition">+ "paths": {</span>
<span class="hljs-addition">+ "*": ["src/*"],</span>
<span class="hljs-addition">+ "tests": ["tests/*"]</span>
<span class="hljs-addition">+ "tests": ["tests/*"],</span>
<span class="hljs-addition">+ "@components/*": ["src/components/*"],</span>
<span class="hljs-addition">+ },</span>
}
</code></pre>
@@ -243,7 +244,8 @@ npm install --save-dev babel-plugin-module-resolver
<span class="hljs-addition">+ root: ['./src'],</span>
<span class="hljs-addition">+ extensions: ['.ios.js', '.android.js', '.js', '.ts', '.tsx', '.json'],</span>
<span class="hljs-addition">+ alias: {</span>
<span class="hljs-addition">+ "test/*": ["./test/"]</span>
<span class="hljs-addition">+ "tests": ["./tests/"],</span>
<span class="hljs-addition">+ "@components": "./src/components",</span>
<span class="hljs-addition">+ }</span>
<span class="hljs-addition">+ }</span>
<span class="hljs-addition">+ ]</span>