Skip to content

Commit 04b8e49

Browse files
author
Beatriz Rizental
authored
Merge pull request #219 from brizental/1706024-ts-loader
Bug 1706024 - Fix path to ping entry point in package.json
2 parents 31a0db2 + 36fdcdb commit 04b8e49

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.9.0...main)
44

5+
* [#219](https://github.com/mozilla/glean.js/pull/219): BUGFIX: Fix path to ping entry point in package.json.
6+
57
# v0.9.0 (2021-04-19)
68

79
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.8.1...v0.9.0)

glean/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"./package.json": "./package.json",
88
"./webext": "./dist/webext/index/webext.js",
99
"./webext/private/metrics/*": "./dist/webext/core/metrics/types/*.js",
10-
"./webext/private/ping": "./dist/webext/core/pings/index.js",
10+
"./webext/private/ping": "./dist/webext/core/pings/ping_type.js",
1111
"./webext/plugins/*": "./dist/webext/plugins/*.js"
1212
},
1313
"typesVersions": {
@@ -16,7 +16,7 @@
1616
"./dist/webext/types/index/webext.d.ts"
1717
],
1818
"webext/private/ping": [
19-
"./dist/webext/types/core/pings/index.d.ts"
19+
"./dist/webext/types/core/pings/ping_type.d.ts"
2020
],
2121
"webext/private/metrics/*": [
2222
"./dist/webext/types/core/metrics/types/*"

0 commit comments

Comments
 (0)