diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7b52e41..2c472d9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,3 +10,9 @@ updates: target-branch: 'dev' schedule: interval: 'weekly' + + - package-ecosystem: 'github-actions' + directory: '/' + target-branch: 'dev' + schedule: + interval: 'weekly' diff --git a/README.md b/README.md index 1709ea8..4b42dc8 100644 --- a/README.md +++ b/README.md @@ -82,11 +82,11 @@ console.log(galacticConversionResult); /* import type { VoxelCoordinates } from '@nmscd/coordinate-conversion'; type VoxelCoordinates = { - voxelX: number; - voxelY: number; - voxelZ: number; - solarSystemIndex: number; - planetIndex: number; + VoxelX: number; + VoxelY: number; + VoxelZ: number; + SolarSystemIndex: number; + PlanetIndex: number; }; ``` diff --git a/example/assets/custom.js b/example/assets/custom.js index 526abe9..1d399ef 100644 --- a/example/assets/custom.js +++ b/example/assets/custom.js @@ -1,7 +1,7 @@ hljs.highlightAll(); -const voxelObj = { "voxelX": 563, "voxelY": 86, "voxelZ": 181, "solarSystemIndex": 5, "planetIndex": 1 }; +const voxelObj = { "VoxelX": 563, "VoxelY": 86, "VoxelZ": 181, "SolarSystemIndex": 5, "PlanetIndex": 1 }; const voxelString = JSON.stringify(voxelObj, null, ' '); const portalToVoxElem = document.getElementById('portaltoVoxel'); @@ -114,4 +114,4 @@ function onVoxelCoord(disableInputValidation) { onPortalCode(true); onGalacticCoord(true); -onVoxelCoord(true); \ No newline at end of file +onVoxelCoord(true); diff --git a/example/index.html b/example/index.html index 120d211..3ad5ebb 100644 --- a/example/index.html +++ b/example/index.html @@ -12,16 +12,22 @@ @@ -141,8 +147,6 @@