Skip to content

Commit

Permalink
Prepare beta release.
Browse files Browse the repository at this point in the history
  • Loading branch information
kovacsv committed Sep 1, 2021
1 parent cb21bdb commit c407cfc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,7 @@ tools\build_wasm_win_release.bat
### 4. Build the native project (optional)

If you want to debug the code, it's useful to build a native project. To do that, just use cmake to generate the project of your choice.

## How to run locally?

To run the demo and the examples locally, you have to start a web server. Run `npm install` from the root directory, then run `npm start` and visit `http://localhost:8080`.
2 changes: 1 addition & 1 deletion examples/node_local_load_test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let fs = require ('fs');
const assimpjs = require ('./assimpjs.js')();
const assimpjs = require ('../dist/assimpjs.js')();

assimpjs.then ((ajs) => {
// create new file list object
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "assimp-js",
"description": "Javascript interface for the assimp library.",
"version": "0.0.1",
"version": "0.0.1-beta",
"repository": "github:kovacsv/assimpjs",
"license": "MIT",
"devDependencies": {
Expand Down

0 comments on commit c407cfc

Please sign in to comment.