Skip to content

Commit

Permalink
feat: Bump Versions
Browse files Browse the repository at this point in the history
* expat: 2.5.0
* graphviz: 7.0.2
* emsdk: 3.1.26

Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
  • Loading branch information
GordonSmith committed Nov 19, 2022
1 parent a568fe7 commit 1d5be7d
Show file tree
Hide file tree
Showing 15 changed files with 3,948 additions and 9,969 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/testPullRequest.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
name: Test PR

on:
push:
branches: [trunk]
pull_request:
branches: [trunk]
on: ["push", "pull_request"]

jobs:
build:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v2
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
scope: "@hpcc-js"

- run: npm ci
- run: npm run lint
- run: sudo apt-get update
Expand All @@ -29,3 +27,11 @@ jobs:
- run: npm run test;
env:
CI: true

- run: npm run coverage
- run: npm run coverage-report

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
7 changes: 7 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"build",
"src/__tests__"
]
}
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
# @hpcc-js/wasm - Version 2

![Tests](https://github.com/hpcc-systems/hpcc-js-wasm/workflows/Test%20PR/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/GordonSmith/hpcc-js-wasm/badge.svg?branch=BUMP_VERSIONS)](https://coveralls.io/github/GordonSmith/hpcc-js-wasm?branch=BUMP_VERSIONS)

**@hpcc-js/wasm is now an ESM by default package** - this is a good thing, but does require some breaking changes.

This repository contains a collection of useful c++ libraries compiled to WASM for (re)use in Node JS, Web Browsers and JavaScript Libraries:
- [base91](https://base91.sourceforge.net/) - v0.6.0
- [expat](https://libexpat.github.io/) - v2.4.9
- [graphviz](https://www.graphviz.org/) - v7.0.1
- [expat](https://libexpat.github.io/) - v2.5.0
- [graphviz](https://www.graphviz.org/) - v7.0.2
- [zstd](https://github.com/facebook/zstd) - v1.5.2
- ...more to follow...

Built with:
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.25
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.26

## Homepage and Documents

Expand Down

0 comments on commit 1d5be7d

Please sign in to comment.