Skip to content

Commit

Permalink
Merge pull request #10 from vojtatom/dev
Browse files Browse the repository at this point in the history
feat: adding export of Base Record class
  • Loading branch information
vojtatom committed Jul 4, 2024
2 parents 7b2c6d4 + e744b25 commit 1d6bab4
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm"

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "yarn install",

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
2 changes: 2 additions & 0 deletions shpts/shpts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { DbfRecord } from './table/record';
import { DbfFieldDescr, DbfFieldType } from './types/dbfTypes';
import { Coord, CoordType } from './types/coordinate';
import { triangulate } from './utils/triangulation';
import { BaseRecord } from './geometry/base';

export {
DbfReader,
Expand All @@ -26,6 +27,7 @@ export {
MultiPointRecord,
MultiPatchRecord,
CoordType,
BaseRecord,
triangulate,
};

Expand Down

0 comments on commit 1d6bab4

Please sign in to comment.