@ghostery/config 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commonjs/actions.js +1 -1
- package/dist/commonjs/flags.js +1 -1
- package/dist/commonjs/index.js +1 -1
- package/dist/commonjs/platforms.js +4 -4
- package/dist/esm/actions.js +1 -1
- package/dist/esm/flags.js +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/platforms.js +3 -3
- package/package.json +6 -1
package/dist/commonjs/actions.js
CHANGED
package/dist/commonjs/flags.js
CHANGED
package/dist/commonjs/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// Copyright 2025 Ghostery GmbH
|
|
2
|
+
// Copyright 2025-2026 Ghostery GmbH
|
|
3
3
|
//
|
|
4
4
|
// Use of this source code is governed by an MIT-style
|
|
5
5
|
// license that can be found in the LICENSE file or at
|
|
6
6
|
// https://opensource.org/licenses/MIT.
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.PLATFORMS = exports.
|
|
8
|
+
exports.PLATFORMS = exports.PLATFORM_WEBKIT = exports.PLATFORM_FIREFOX = exports.PLATFORM_CHROMIUM = void 0;
|
|
9
9
|
exports.isPlatform = isPlatform;
|
|
10
10
|
exports.PLATFORM_CHROMIUM = "chromium";
|
|
11
11
|
exports.PLATFORM_FIREFOX = "firefox";
|
|
12
|
-
exports.
|
|
12
|
+
exports.PLATFORM_WEBKIT = "webkit";
|
|
13
13
|
exports.PLATFORMS = [
|
|
14
14
|
exports.PLATFORM_CHROMIUM,
|
|
15
15
|
exports.PLATFORM_FIREFOX,
|
|
16
|
-
exports.
|
|
16
|
+
exports.PLATFORM_WEBKIT,
|
|
17
17
|
];
|
|
18
18
|
function isPlatform(platform) {
|
|
19
19
|
return exports.PLATFORMS.includes(platform);
|
package/dist/esm/actions.js
CHANGED
package/dist/esm/flags.js
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/esm/platforms.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
// Copyright 2025 Ghostery GmbH
|
|
1
|
+
// Copyright 2025-2026 Ghostery GmbH
|
|
2
2
|
//
|
|
3
3
|
// Use of this source code is governed by an MIT-style
|
|
4
4
|
// license that can be found in the LICENSE file or at
|
|
5
5
|
// https://opensource.org/licenses/MIT.
|
|
6
6
|
export const PLATFORM_CHROMIUM = "chromium";
|
|
7
7
|
export const PLATFORM_FIREFOX = "firefox";
|
|
8
|
-
export const
|
|
8
|
+
export const PLATFORM_WEBKIT = "webkit";
|
|
9
9
|
export const PLATFORMS = [
|
|
10
10
|
PLATFORM_CHROMIUM,
|
|
11
11
|
PLATFORM_FIREFOX,
|
|
12
|
-
|
|
12
|
+
PLATFORM_WEBKIT,
|
|
13
13
|
];
|
|
14
14
|
export function isPlatform(platform) {
|
|
15
15
|
return PLATFORMS.includes(platform);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ghostery/config",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Shared TypeScript types for Ghostery configuration",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -26,6 +26,11 @@
|
|
|
26
26
|
],
|
|
27
27
|
"author": "",
|
|
28
28
|
"license": "MIT",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/ghostery/broken-page-reports",
|
|
32
|
+
"directory": "packages/config"
|
|
33
|
+
},
|
|
29
34
|
"publishConfig": {
|
|
30
35
|
"access": "public"
|
|
31
36
|
},
|