Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.6.15](https://github.com/googlemaps/extended-component-library/compare/v0.6.14...v0.6.15) (2026-06-03)


### Bug Fixes

* make `isPlaceResult()` type predicate more robust to JS API changes ([d13ae7f](https://github.com/googlemaps/extended-component-library/commit/d13ae7f41e8bf1a55cbf8ae72990f9be0bada62d))

## [0.6.12](https://github.com/googlemaps/extended-component-library/compare/v0.6.11...v0.6.12) (2024-10-22)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

107 changes: 83 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@googlemaps/extended-component-library",
"version": "0.6.12",
"version": "0.6.15",
"description": "Web Components for building rich experiences with the Google Maps JavaScript API.",
"license": "Apache-2.0",
"homepage": "https://github.com/googlemaps/extended-component-library",
Expand Down Expand Up @@ -100,42 +100,86 @@
"!**/*_test.ts",
"!src/testing/*.ts"
],
"output": ["custom-elements.json"]
"output": [
"custom-elements.json"
]
},
"docs": {
"command": "node build/make_docs.js",
"dependencies": ["cem"],
"files": ["**/doc_src/*", "build/make_docs.js", "custom-elements.json"],
"output": ["README.md", "src/**/README.md", "!src/react/README.md"]
"dependencies": [
"cem"
],
"files": [
"**/doc_src/*",
"build/make_docs.js",
"custom-elements.json"
],
"output": [
"README.md",
"src/**/README.md",
"!src/react/README.md"
]
},
"build": {
"dependencies": ["build:ts"]
"dependencies": [
"build:ts"
]
},
"build:react": {
"command": "node build/make_react.js",
"dependencies": ["cem"],
"files": ["build/make_react.js", "custom-elements.json"],
"output": ["src/react/index.ts"]
"dependencies": [
"cem"
],
"files": [
"build/make_react.js",
"custom-elements.json"
],
"output": [
"src/react/index.ts"
]
},
"build:ts": {
"command": "tsc",
"dependencies": ["build:react"],
"files": ["tsconfig.json", "src/**/*.ts"],
"output": [".tsbuildinfo", "lib/**/*"],
"dependencies": [
"build:react"
],
"files": [
"tsconfig.json",
"src/**/*.ts"
],
"output": [
".tsbuildinfo",
"lib/**/*"
],
"clean": "if-file-deleted"
},
"build:package": {
"command": ". build/finalize_package.sh",
"dependencies": ["build:ts"],
"files": ["build/finalize_package.sh", "lib/base/constants.js"],
"output": ["lib/**/*.js", "lib/**/*.md"],
"dependencies": [
"build:ts"
],
"files": [
"build/finalize_package.sh",
"lib/base/constants.js"
],
"output": [
"lib/**/*.js",
"lib/**/*.md"
],
"clean": false
},
"build:bundle": {
"command": "rollup -c build/rollup.config.js",
"dependencies": ["build:package"],
"files": ["build/rollup.config.js", "lib/**/*.js"],
"output": ["dist/index.min.js"]
"dependencies": [
"build:package"
],
"files": [
"build/rollup.config.js",
"lib/**/*.js"
],
"output": [
"dist/index.min.js"
]
},
"example:prepare": {
"command": "chmod +x build/start_example.sh"
Expand All @@ -145,7 +189,10 @@
"env": {
"PORT": "8001"
},
"dependencies": ["build:package", "example:prepare"],
"dependencies": [
"build:package",
"example:prepare"
],
"service": {
"readyWhen": {
"lineMatches": "You can now view \\S+ in the browser"
Expand All @@ -157,7 +204,10 @@
"env": {
"PORT": "8002"
},
"dependencies": ["build:bundle", "example:prepare"],
"dependencies": [
"build:bundle",
"example:prepare"
],
"service": {
"readyWhen": {
"lineMatches": "Web Dev Server started"
Expand All @@ -169,7 +219,10 @@
"env": {
"PORT": "8003"
},
"dependencies": ["build:package", "example:prepare"],
"dependencies": [
"build:package",
"example:prepare"
],
"service": {
"readyWhen": {
"lineMatches": "Angular Live Development Server is listening on localhost"
Expand All @@ -183,13 +236,19 @@
"example:js_sample_app",
"example:angular_sample_app"
],
"files": ["e2e/**/*.js"],
"files": [
"e2e/**/*.js"
],
"output": []
},
"test": {
"command": "wtr",
"dependencies": ["build:ts"],
"files": ["web-test-runner.config.js"],
"dependencies": [
"build:ts"
],
"files": [
"web-test-runner.config.js"
],
"output": []
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/base/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/** Package version of this component library. */
export const LIBRARY_VERSION = '0.6.12'; // x-release-please-version
export const LIBRARY_VERSION = '0.6.15'; // x-release-please-version

/** Identifier of where this component library is sourced from. */
export const ATTRIBUTION_SOURCE_ID = 'GIT';
Loading