Skip to content

Commit f9e2abd

Browse files
awmackcopybara-github
authored andcommitted
chore: update Wireit action and docs
PiperOrigin-RevId: 803180442
1 parent ba66e9c commit f9e2abd

8 files changed

Lines changed: 35 additions & 97 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
node-version: 18
1414
cache: npm
15-
- uses: google/wireit@setup-github-actions-caching/v1
15+
- uses: google/wireit@setup-github-actions-caching/v2
1616

1717
- run: npm ci
1818
- run: npm run docs

.github/workflows/react.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
node-version: 18
1414
cache: npm
15-
- uses: google/wireit@setup-github-actions-caching/v1
15+
- uses: google/wireit@setup-github-actions-caching/v2
1616

1717
- run: npm ci
1818
- run: npm run build:react

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
node-version: 18
1414
cache: npm
15-
- uses: google/wireit@setup-github-actions-caching/v1
15+
- uses: google/wireit@setup-github-actions-caching/v2
1616

1717
- run: npm ci
1818
- run: npm run build:bundle
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
node-version: 18
3030
cache: npm
31-
- uses: google/wireit@setup-github-actions-caching/v1
31+
- uses: google/wireit@setup-github-actions-caching/v2
3232

3333
- run: npm ci
3434
- run: npx playwright install --with-deps

CHANGELOG.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
# Changelog
22

3-
## [0.6.14](https://github.com/googlemaps/extended-component-library/compare/v0.6.13...v0.6.14) (2025-05-14)
4-
5-
6-
### Bug Fixes
7-
8-
* update suggestValidationAction with updated AddressValidation syntax ([07ff780](https://github.com/googlemaps/extended-component-library/commit/07ff7809d065f2660617fd824436c16c5e35a6c3))
9-
103
## [0.6.12](https://github.com/googlemaps/extended-component-library/compare/v0.6.11...v0.6.12) (2024-10-22)
114

125

doc_src/README.footer.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ This library uses Google Maps Platform services, and any use of Google Maps Plat
4747

4848
For clarity, this library, and each underlying component, is not a Google Maps Platform Core Service.
4949

50+
### European Economic Area (EEA) developers
51+
52+
If your billing address is in the European Economic Area, effective on 8 July 2025, the [Google Maps Platform EEA Terms of Service](https://cloud.google.com/terms/maps-platform/eea) will apply to your use of the Services. Functionality varies by region. [Learn more](https://developers.google.com/maps/comms/eea/faq).
53+
5054
## Attribution
5155

5256
As a reminder, you must comply with all applicable attribution requirements for the Google Maps Platform API(s) and SDK(s) used by the Extended Component Library.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 24 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@googlemaps/extended-component-library",
3-
"version": "0.6.14",
3+
"version": "0.6.12",
44
"description": "Web Components for building rich experiences with the Google Maps JavaScript API.",
55
"license": "Apache-2.0",
66
"homepage": "https://github.com/googlemaps/extended-component-library",
@@ -100,86 +100,42 @@
100100
"!**/*_test.ts",
101101
"!src/testing/*.ts"
102102
],
103-
"output": [
104-
"custom-elements.json"
105-
]
103+
"output": ["custom-elements.json"]
106104
},
107105
"docs": {
108106
"command": "node build/make_docs.js",
109-
"dependencies": [
110-
"cem"
111-
],
112-
"files": [
113-
"**/doc_src/*",
114-
"build/make_docs.js",
115-
"custom-elements.json"
116-
],
117-
"output": [
118-
"README.md",
119-
"src/**/README.md",
120-
"!src/react/README.md"
121-
]
107+
"dependencies": ["cem"],
108+
"files": ["**/doc_src/*", "build/make_docs.js", "custom-elements.json"],
109+
"output": ["README.md", "src/**/README.md", "!src/react/README.md"]
122110
},
123111
"build": {
124-
"dependencies": [
125-
"build:ts"
126-
]
112+
"dependencies": ["build:ts"]
127113
},
128114
"build:react": {
129115
"command": "node build/make_react.js",
130-
"dependencies": [
131-
"cem"
132-
],
133-
"files": [
134-
"build/make_react.js",
135-
"custom-elements.json"
136-
],
137-
"output": [
138-
"src/react/index.ts"
139-
]
116+
"dependencies": ["cem"],
117+
"files": ["build/make_react.js", "custom-elements.json"],
118+
"output": ["src/react/index.ts"]
140119
},
141120
"build:ts": {
142121
"command": "tsc",
143-
"dependencies": [
144-
"build:react"
145-
],
146-
"files": [
147-
"tsconfig.json",
148-
"src/**/*.ts"
149-
],
150-
"output": [
151-
".tsbuildinfo",
152-
"lib/**/*"
153-
],
122+
"dependencies": ["build:react"],
123+
"files": ["tsconfig.json", "src/**/*.ts"],
124+
"output": [".tsbuildinfo", "lib/**/*"],
154125
"clean": "if-file-deleted"
155126
},
156127
"build:package": {
157128
"command": ". build/finalize_package.sh",
158-
"dependencies": [
159-
"build:ts"
160-
],
161-
"files": [
162-
"build/finalize_package.sh",
163-
"lib/base/constants.js"
164-
],
165-
"output": [
166-
"lib/**/*.js",
167-
"lib/**/*.md"
168-
],
129+
"dependencies": ["build:ts"],
130+
"files": ["build/finalize_package.sh", "lib/base/constants.js"],
131+
"output": ["lib/**/*.js", "lib/**/*.md"],
169132
"clean": false
170133
},
171134
"build:bundle": {
172135
"command": "rollup -c build/rollup.config.js",
173-
"dependencies": [
174-
"build:package"
175-
],
176-
"files": [
177-
"build/rollup.config.js",
178-
"lib/**/*.js"
179-
],
180-
"output": [
181-
"dist/index.min.js"
182-
]
136+
"dependencies": ["build:package"],
137+
"files": ["build/rollup.config.js", "lib/**/*.js"],
138+
"output": ["dist/index.min.js"]
183139
},
184140
"example:prepare": {
185141
"command": "chmod +x build/start_example.sh"
@@ -189,10 +145,7 @@
189145
"env": {
190146
"PORT": "8001"
191147
},
192-
"dependencies": [
193-
"build:package",
194-
"example:prepare"
195-
],
148+
"dependencies": ["build:package", "example:prepare"],
196149
"service": {
197150
"readyWhen": {
198151
"lineMatches": "You can now view \\S+ in the browser"
@@ -204,10 +157,7 @@
204157
"env": {
205158
"PORT": "8002"
206159
},
207-
"dependencies": [
208-
"build:bundle",
209-
"example:prepare"
210-
],
160+
"dependencies": ["build:bundle", "example:prepare"],
211161
"service": {
212162
"readyWhen": {
213163
"lineMatches": "Web Dev Server started"
@@ -219,10 +169,7 @@
219169
"env": {
220170
"PORT": "8003"
221171
},
222-
"dependencies": [
223-
"build:package",
224-
"example:prepare"
225-
],
172+
"dependencies": ["build:package", "example:prepare"],
226173
"service": {
227174
"readyWhen": {
228175
"lineMatches": "Angular Live Development Server is listening on localhost"
@@ -236,19 +183,13 @@
236183
"example:js_sample_app",
237184
"example:angular_sample_app"
238185
],
239-
"files": [
240-
"e2e/**/*.js"
241-
],
186+
"files": ["e2e/**/*.js"],
242187
"output": []
243188
},
244189
"test": {
245190
"command": "wtr",
246-
"dependencies": [
247-
"build:ts"
248-
],
249-
"files": [
250-
"web-test-runner.config.js"
251-
],
191+
"dependencies": ["build:ts"],
192+
"files": ["web-test-runner.config.js"],
252193
"output": []
253194
}
254195
}

src/base/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
/** Package version of this component library. */
8-
export const LIBRARY_VERSION = '0.6.14'; // x-release-please-version
8+
export const LIBRARY_VERSION = '0.6.12'; // x-release-please-version
99

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

0 commit comments

Comments
 (0)