Compare commits

...

9 Commits

Author SHA1 Message Date
46af2dd229
Remove dist, node_modules, and build artifacts from version control
This commit cleans up the repository by removing files that should be ignored according to .gitignore:
- Removed entire node_modules/ directory
- Removed dist and build artifacts (fesm2022/, lib/, index.d.ts)
- Removed IDE files (.idea/, .editorconfig)
- Removed .DS_Store files
- Removed .npmignore (not needed for source repo)

Kept .vscode/ files (extensions.json, launch.json, tasks.json) as they are explicitly allowed in .gitignore.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 16:02:08 -05:00
7551c0f26c
Merge branch 'feature/main'
# Conflicts:
#	package-lock.json
#	package.json
2025-11-05 15:59:22 -05:00
b285feb132
update to 0.2.2 2025-10-27 09:20:22 -04:00
9f573b9371
chore: bump version to 0.2.1 2025-10-27 09:13:44 -04:00
e97016d02b Merge pull request 'feature/zone' (#1) from feature/zone into main
Reviewed-on: #1
2025-10-22 13:26:02 -04:00
943c4fc4ae
add zone, add popup address, add popup zone, add remove marker, add close popup 2025-10-22 13:24:37 -04:00
849a6f07a0
add zone, add popup address, add popup zone, add remove marker, add close popup 2025-10-07 16:25:24 -04:00
db3ec6cddd
add addzone and update zone in map-adapter interface 2025-09-29 14:55:14 -04:00
67c94197e1 initial commit 2025-09-04 13:47:54 -04:00
2 changed files with 4 additions and 17 deletions

View File

@ -1,17 +0,0 @@
# Editor configuration, see https://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
[*.ts]
quote_type = single
ij_typescript_use_double_quotes = false
[*.md]
max_line_length = off
trim_trailing_whitespace = false

4
public-api.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
export * from './lib/adapters/map-adapter.interface';
export * from './lib/adapters/map-facade';
export * from './lib/components/open-map/open-map.component';
export * from './lib/directives/webgl-detection.directive';