Skip to content

Commit 57ca07b

Browse files
committed
Update npm deploy
1 parent b19b22a commit 57ca07b

File tree

7 files changed

+29
-12
lines changed

7 files changed

+29
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Do you want to contribute to make this even better? Bear in mind that this proje
1919

2020
- [web-ifc](https://github.com/tomvandig/web-ifc) if you are interested in low-level IFC parsing, WebAssembly, Emscripten, C++.
2121

22-
- [web-ifc-three](https://github.com/tomvandig/web-ifc-three) if you want to help us with the Three.js geometry generation.
22+
- [web-ifc-three](https://github.com/agviegas/web-ifc-three) if you want to help us with the Three.js geometry generation.
2323

2424
- This repository if you have ideas about cool tools that could help others develop BIM applications!
2525

@@ -35,10 +35,10 @@ You can refer your issue to the specific repository:
3535

3636
- [web-ifc](https://github.com/tomvandig/web-ifc) if you have any problem with the parsing / loading (items not being readed / loaded correctly, information missing).
3737

38-
- [web-ifc-three](https://github.com/tomvandig/web-ifc-three) if you have any problem with the adaptation we did for Three.js (efficiency, Three geometry generation, etc).
38+
- [web-ifc-three](https://github.com/agviegas/web-ifc-three) if you have any problem with the adaptation we did for Three.js (efficiency, Three geometry generation, etc).
3939

4040
- This repository if you have any problem with the boilerplate code it offers to develop BIM viewers.
4141

4242
## License
4343

44-
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
44+
This project is licensed under the MIT License.

examples/simple-html/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "web-ifc-viewer-basic-example",
33
"private": true,
44
"type": "module",
5-
"version": "1.0.0",
5+
"version": "1.0.3",
66
"description": "A basic html example for web-ifc-viewer",
77
"main": "index.html",
88
"scripts": {

examples/simple-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-ifc-viewer-simple-react",
3-
"version": "0.1.0",
3+
"version": "0.1.3",
44
"private": true,
55
"dependencies": {
66
"@material-ui/core": "^4.11.4",

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
{
22
"name": "ifc.js",
33
"description": "IFC viewer",
4-
"version": "1.0.1",
4+
"version": "1.0.4",
55
"private": true,
66
"author": "agviegas",
77
"license": "MIT",
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/agviegas/IFC.js.git"
10+
"url": "git+https://github.com/agviegas/web-ifc-viewer.git"
1111
},
1212
"scripts": {
1313
"init-repo": "npm run init-yarn && npm run build",
1414
"start": "cd examples/simple-html && npm run start",
1515
"init-yarn": "npm i yarn -g && yarn",
16-
"build": "cd viewer && npm run build && cd .. && cd examples/simple-html && npm run build"
16+
"build": "cd viewer && npm run build && cd .. && cd examples/simple-html && npm run build",
17+
"publish-repo": "cd viewer && npm run build && npm publish"
1718
},
1819
"bugs": {
19-
"url": "https://github.com/agviegas/IFC.js/issues"
20+
"url": "https://github.com/agviegas/web-ifc-viewer/issues"
2021
},
2122
"keywords": [
2223
"ifc",

viewer/.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
src
3+
tsconfig.json

viewer/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-ifc-viewer",
3-
"version": "1.0.1",
3+
"version": "1.0.4",
44
"description": "IFC viewer",
55
"main": "dist/index.js",
66
"scripts": {
@@ -21,9 +21,9 @@
2121
"author": "agviegas",
2222
"license": "MIT",
2323
"bugs": {
24-
"url": "https://github.com/agviegas/IFC.js/issues"
24+
"url": "https://github.com/agviegas/web-ifc-viewer/issues"
2525
},
26-
"homepage": "https://github.com/agviegas/IFC.js#readme",
26+
"homepage": "https://github.com/agviegas/web-ifc-viewer",
2727
"dependencies": {
2828
"@parametricos/bcf-js": "^0.1.2",
2929
"three": "^0.128.0",

yarn.lock

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12326,6 +12326,19 @@ web-ifc-three@^0.0.25:
1232612326
three-mesh-bvh "^0.3.7"
1232712327
web-ifc "0.0.19"
1232812328

12329+
web-ifc-viewer@1.0.1:
12330+
version "1.0.1"
12331+
resolved "https://registry.yarnpkg.com/web-ifc-viewer/-/web-ifc-viewer-1.0.1.tgz#e691820bf215f4531b38469b54dbc79e6a58bd8c"
12332+
integrity sha512-qQkm/PdF7tUuVws93UPvtNsJdlpt9i7hNuvdObNykYhvXIK9sfeyI1h6zGotYjz2Ky+gVB2XMPlfMeKR1IFsvA==
12333+
dependencies:
12334+
three "^0.128.0"
12335+
web-ifc "0.0.17"
12336+
12337+
web-ifc@0.0.17:
12338+
version "0.0.17"
12339+
resolved "https://registry.yarnpkg.com/web-ifc/-/web-ifc-0.0.17.tgz#c0662ba1f765fb0148802e886640737741083028"
12340+
integrity sha512-MW30sYcJ1daSE2IUARwBKh3y+jky1Cz7KwGj6J/BfvOgFf4XpPgWzodwGUM635DH4LQED0BQhay3L4vewORLuw==
12341+
1232912342
web-ifc@0.0.19:
1233012343
version "0.0.19"
1233112344
resolved "https://registry.yarnpkg.com/web-ifc/-/web-ifc-0.0.19.tgz#314ceb45e2971aba7bf68deef02eb38189b6b8a7"

0 commit comments

Comments
 (0)