Skip to content

Commit 107cf47

Browse files
authored
feat!: reimplement with updated and simplified API (googlemaps#1068)
A complete reimplementation of this package with the new API for the 2.0 version Release-As: 2.0.0
1 parent 37ef28a commit 107cf47

30 files changed

+1819
-3116
lines changed

.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
insert_final_newline = true

.eslintignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/bundlewatch.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"files": [
33
{
4-
"path": "dist/index.*.js"
4+
"path": "dist/index*.js"
55
}
66
],
77
"ci": {

.github/workflows/bundlewatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ jobs:
4141

4242
- uses: jackyef/bundlewatch-gh-action@b9753bc9b3ea458ff21069eaf6206e01e046f0b5
4343
with:
44-
build-script: npm run prepare
44+
build-script: npm run prepack
4545
bundlewatch-github-token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
4646
bundlewatch-config: .github/bundlewatch.config.json

.github/workflows/docs.yml

Lines changed: 0 additions & 50 deletions
This file was deleted.

.github/workflows/e2e.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/bootstrap.js

.prettierrc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
bracketSpacing: false,
3+
singleQuote: true,
4+
trailingComma: "all",
5+
arrowParens: "avoid",
6+
};

.releaserc

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)