Skip to content

Commit 27ff578

Browse files
authored
Feature/0.1.3 rc (#49)
1 parent 714830b commit 27ff578

File tree

9 files changed

+20
-9
lines changed

9 files changed

+20
-9
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,11 @@ Here is a minimal browser-based example using the JavaScript API. Adapt paths, s
156156

157157
> 💖 **If you find FEAScript useful, please consider supporting its development through a donation:**
158158
159+
<a href="https://github.com/sponsors/FEAScript">
160+
<img alt="GitHub Sponsors" src="https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/feascript">
161+
</a>
159162
<a href="https://liberapay.com/FEAScript/donate">
160-
<img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg">
163+
<img alt="Donate using Liberapay" src="https://img.shields.io/badge/Liberapay-F6C915?logo=liberapay&logoColor=black">
161164
</a>
162165

163166
Your support helps ensure the continued development and maintenance of this project.

dist/feascript.cjs.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feascript.cjs.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feascript.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feascript.esm.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feascript.umd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feascript.umd.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/generalFormPDEScript/advectionDiffusion1D/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- <img src="https://feascript.github.io/FEAScript-website/assets/FEAScriptGenPDE.png" width="80" alt="FEAScript General Form PDE Logo"> -->
1+
<img src="https://feascript.github.io/FEAScript-website/assets/FEAScriptGeneralFormPDE.png" width="80" alt="FEAScript General Form PDE Logo">
22

33
## Advection-Diffusion with Gaussian Source
44

package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"scripts": {
2020
"build": "rollup -c",
2121
"prepublishOnly": "npm run build",
22-
"test": "echo \"No tests configured\" && exit 0"
22+
"test": "for file in $(find examples -name '*.js' -type f | sort); do echo 'Running' \"$file\"; if node \"$file\" > /dev/null 2>&1; then echo 'Success'; else echo 'Failed'; fi; done"
2323
},
2424
"repository": {
2525
"type": "git",
@@ -44,6 +44,14 @@
4444
{
4545
"name": "Felipe Ferrari",
4646
"url": "https://github.com/ferrari212"
47+
},
48+
{
49+
"name": "Akhilesh Tiwari",
50+
"url": "https://github.com/silky-x0"
51+
},
52+
{
53+
"name": "Priyank Bansal",
54+
"url": "https://github.com/Stu-ops"
4755
}
4856
],
4957
"license": "MIT",

0 commit comments

Comments
 (0)