Merge branch 'refs/heads/master' into bathymetry_interpolation

# Conflicts:
#	jsdoc.conf.json
This commit is contained in:
Zemledelec 2024-06-25 10:42:30 +04:00
commit de2b506f6b
6 changed files with 802 additions and 570 deletions

View File

@ -20,7 +20,7 @@ jobs:
- run: npm run build
- run: npm run docs
- run: npm run docs || true
- name: Deploy to openglobus.github.io
uses: cpina/github-action-push-to-another-repository@main

View File

@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/main
- run: npm run docs
- run: npm run docs || true
- name: Deploy to openglobus.github.io
uses: cpina/github-action-push-to-another-repository@main
env:

View File

@ -45,7 +45,7 @@ npm i @openglobus/openglobus-react
- [Examples](https://sandbox.openglobus.org)
- [Wiki](https://github.com/openglobus/openglobus/wiki)
- [API documentation](https://www.openglobus.org/api/)
- [API documentation](https://openglobus.github.io/docs/)
## Get Started to contribute
@ -97,7 +97,7 @@ Third, try an example from the sandbox:
### Other scripts
`npm run docs` - build [api documentation](https://www.openglobus.org/api/) into /api folder
`npm run docs` - build [api documentation](https://openglobus.github.io/docs/) into /api folder
`npm run serve` - run local web server for develop and watch examples

View File

@ -3,12 +3,12 @@
"include" : [
"README.md"
],
"includePattern" : ".ts$",
"includePattern" : "(.js$|.ts$)",
"excludePattern" : "(node_modules/|docs)"
},
"plugins" : [
"plugins/markdown",
"node_modules/jsdoc-babel"
],
"opts" : {
"encoding" : "utf8",
@ -26,6 +26,13 @@
"title": "OpenGlobus"
}
},
"babel": {
"extensions": ["ts", "tsx"],
"ignore": ["**/*.(test|spec).ts"],
"babelrc": false,
"presets": [["@babel/preset-env", { "targets": { "node": true } }], "@babel/preset-typescript"],
"plugins": ["@babel/proposal-class-properties", "@babel/proposal-object-rest-spread"]
},
"markdown" : {
"hardwrap" : false,
"idInHeadings" : true

1343
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@openglobus/og",
"version": "0.19.3",
"version": "0.19.4",
"description": "[openglobus](https://www.openglobus.org/) is a javascript/typescript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers, and 3D objects. It uses the WebGL technology, open source, and completely free.",
"directories": {
"example": "./sandbox"
@ -34,7 +34,12 @@
},
"homepage": "https://www.openglobus.org",
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
@ -47,6 +52,7 @@
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jsdoc": "^4.0.3",
"jsdoc-babel": "^0.5.0",
"lint-staged": "^15.2.4",
"local-web-server": "^5.3.3",
"postcss": "^8.4.38",