raain-ui 2.3.8 → 2.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -1
- package/README.md +1 -6
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -9,7 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
### Changed
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
- Version bump to 2.3.9
|
|
13
|
+
- Version information export in bpInfo.ts
|
|
14
|
+
|
|
15
|
+
## [2.3.8] - 2025-05-20
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Version bump to 2.3.8
|
|
20
|
+
- Version information export in bpInfo.ts
|
|
21
|
+
|
|
22
|
+
## [2.3.6] - 2025-04-01
|
|
13
23
|
|
|
14
24
|
### Added
|
|
15
25
|
|
package/README.md
CHANGED
|
@@ -182,12 +182,7 @@ Then use `@angular-builders/custom-webpack` to apply this configuration:
|
|
|
182
182
|
|
|
183
183
|
## 📝 Changelog
|
|
184
184
|
|
|
185
|
-
See the [Changelog](./CHANGELOG.md) for a detailed list of changes in each version.
|
|
186
|
-
|
|
187
|
-
- **v2.3.x**: Cartesian earth optimization, DateStatusUtils, Memory bank documentation
|
|
188
|
-
- **v2.2.x**: Model polar visualization improvements
|
|
189
|
-
- **v2.1.x**: Support for icons in composite layers
|
|
190
|
-
- **v2.0.x**: Updated raain-model integration
|
|
185
|
+
See the [Changelog](./CHANGELOG.md) for a detailed list of changes in each version.
|
|
191
186
|
|
|
192
187
|
## 👥 Contributing
|
|
193
188
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "raain-ui",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.9",
|
|
4
4
|
"author": "contact@raain.io",
|
|
5
5
|
"homepage": "https://github.com/raainio/raain-ui",
|
|
6
6
|
"description": "raain.io ui layers",
|
|
@@ -21,13 +21,14 @@
|
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"bp:_clean": "rm -rf package-lock.json node_modules .gen .logs .nyc_output .logs .output.txt .coverage .coverage_temp dist app && npm i",
|
|
24
|
-
"bp:bump": "OLD_VERSION=\"v$(node -e \"console.log(require('./package.json').version)\")\" && VERSION=\"$(npm version patch --no-git-tag-version)\" && npm i && echo \"export const bpInfo={version:'$VERSION'}\" > ./src/bpInfo.ts && git tag $OLD_VERSION && git checkout -b $VERSION",
|
|
25
|
-
"bp:update-changelog": "node ./scripts/bp/update-changelog-date.js",
|
|
24
|
+
"bp:bump": "OLD_VERSION=\"v$(node -e \"console.log(require('./package.json').version)\")\" && VERSION=\"$(npm version patch --no-git-tag-version)\" && npm i && echo \"export const bpInfo = {version:'$VERSION'}\" > ./src/bpInfo.ts && git tag $OLD_VERSION && git checkout -b $VERSION",
|
|
25
|
+
"bp:update-changelog-dates": "node ./scripts/bp/update-changelog-date.js",
|
|
26
26
|
"bp:use-local-deps": "node ./scripts/bp/switch-dependencies.js local && npm run bp:_clean",
|
|
27
27
|
"bp:use-remote-deps": "node ./scripts/bp/switch-dependencies.js remote && npm run bp:_clean",
|
|
28
28
|
"bp:branch:push": "git add . && git commit -m \"chore: release v$(node -p \"require('./package.json').version\")\" && git push",
|
|
29
29
|
"bp:branch:squash": "node ./scripts/bp/squash-commits.js",
|
|
30
|
-
"
|
|
30
|
+
"bp:main:package": "git checkout package && git merge main && git push && git checkout main",
|
|
31
|
+
"test": "./node_modules/.bin/_mocha --require ./tools/register.js 'specs/**/**.spec.ts'",
|
|
31
32
|
"build": "npm run build-dist",
|
|
32
33
|
"build-dist": "rm -rf dist/ && tsc --project tsconfig.json && cp *.md dist/ && cp package.json dist/ && cp -r src/data dist/"
|
|
33
34
|
},
|
|
@@ -38,7 +39,7 @@
|
|
|
38
39
|
"geolib": "^3.3.4",
|
|
39
40
|
"leaflet": "^1.9.4",
|
|
40
41
|
"pixi.js": "^5.3.12",
|
|
41
|
-
"raain-model": "^3.0.
|
|
42
|
+
"raain-model": "^3.0.11",
|
|
42
43
|
"satellite-view": "^2.1.2",
|
|
43
44
|
"spinning-ball": "^0.5.0",
|
|
44
45
|
"tile-setter": "^0.1.12",
|
|
@@ -58,7 +59,6 @@
|
|
|
58
59
|
"jsdom": "^24.0.0",
|
|
59
60
|
"mocha": "^10.2.0",
|
|
60
61
|
"mock-browser": "^0.92.14",
|
|
61
|
-
"nyc": "^15.1.0",
|
|
62
62
|
"sinon": "^15.2.0",
|
|
63
63
|
"ts-mockito": "^2.6.1",
|
|
64
64
|
"ts-node": "^8.3.0",
|