-
Notifications
You must be signed in to change notification settings - Fork 817
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(*): change file naming convention
To align with the NPM package name `angular2-google-maps` and the main module name, which uses dashes, we use dashes insted of underscores in all source filenames. BREAKING CHANGE: When you import a directive directly, you have to change the import path: Old: ``` import {SebmGoogleMap} from 'angular2-google-maps/directives/google_map'; ``` New: ``` import {SebmGoogleMap} from 'angular2-google-maps/directives/google-map'; ```
- Loading branch information
1 parent
4fcd9af
commit 5a1ac76
Showing
13 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import {SebmGoogleMap} from './directives/google-map'; | ||
import {SebmGoogleMapMarker} from './directives/google-map-marker'; | ||
|
||
export const ANGULAR2_GOOGLE_MAPS_DIRECTIVES: any[] = [SebmGoogleMap, SebmGoogleMapMarker]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export {SebmGoogleMap} from './directives/google_map'; | ||
export {SebmGoogleMapMarker} from './directives/google_map_marker'; | ||
export {ANGULAR2_GOOGLE_MAPS_DIRECTIVES} from './directives_const'; | ||
export {SebmGoogleMap} from './directives/google-map'; | ||
export {SebmGoogleMapMarker} from './directives/google-map-marker'; | ||
export {ANGULAR2_GOOGLE_MAPS_DIRECTIVES} from './directives-const'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export {MapsAPILoader} from './services/maps_api_loader/maps_api_loader'; | ||
export {NoOpMapsAPILoader} from './services/maps_api_loader/noop_maps_api_loader'; | ||
export {MapsAPILoader} from './services/maps-api-loader/maps-api-loader'; | ||
export {NoOpMapsAPILoader} from './services/maps-api-loader/noop-maps-api-loader'; | ||
export { | ||
LazyMapsAPILoader, | ||
LazyMapsAPILoaderConfig, | ||
GoogleMapsScriptProtocol | ||
} from './services/maps_api_loader/lazy_maps_api_loader'; | ||
} from './services/maps-api-loader/lazy-maps-api-loader'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...s/maps_api_loader/lazy_maps_api_loader.ts → ...s/maps-api-loader/lazy-maps-api-loader.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...s/maps_api_loader/noop_maps_api_loader.ts → ...s/maps-api-loader/noop-maps-api-loader.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/services/marker_manager.ts → src/services/marker-manager.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters