@atlaspack/transformer-webmanifest 2.14.27-inline-requires-take-2-850fb4568.0 → 2.14.28-dev-optimised-prelude-6fa233c65.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaspack/transformer-webmanifest
2
2
 
3
+ ## 2.14.27
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @atlaspack/utils@2.18.4
9
+ - @atlaspack/plugin@2.14.27
10
+
3
11
  ## 2.14.26
4
12
 
5
13
  ### Patch Changes
@@ -49,7 +49,6 @@ const RESOURCES_SCHEMA = {
49
49
  properties: {
50
50
  src: {
51
51
  type: 'string',
52
- // @ts-expect-error TS7006
53
52
  __validate: s => {
54
53
  if (s.length === 0) {
55
54
  return 'Must not be empty';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/transformer-webmanifest",
3
- "version": "2.14.27-inline-requires-take-2-850fb4568.0",
3
+ "version": "2.14.28-dev-optimised-prelude-6fa233c65.0",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -14,9 +14,9 @@
14
14
  "types": "./lib/types/WebManifestTransformer.d.ts",
15
15
  "engines": {},
16
16
  "dependencies": {
17
- "@atlaspack/diagnostic": "2.14.4-inline-requires-take-2-850fb4568.0",
18
- "@atlaspack/plugin": "2.14.27-inline-requires-take-2-850fb4568.0",
19
- "@atlaspack/utils": "2.18.4-inline-requires-take-2-850fb4568.0",
17
+ "@atlaspack/diagnostic": "2.14.4-dev-optimised-prelude-6fa233c65.0",
18
+ "@atlaspack/plugin": "2.14.28-dev-optimised-prelude-6fa233c65.0",
19
+ "@atlaspack/utils": "2.18.5-dev-optimised-prelude-6fa233c65.0",
20
20
  "@mischnic/json-sourcemap": "^0.1.0"
21
21
  },
22
22
  "type": "commonjs",
@@ -24,5 +24,5 @@
24
24
  "check-ts": "tsc --emitDeclarationOnly --rootDir src",
25
25
  "build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
26
26
  },
27
- "gitHead": "850fb4568e775c8c938e92c1ec0b99d9724ae2c3"
27
+ "gitHead": "6fa233c656e8abea0878044e1fc0dc2023077a53"
28
28
  }
@@ -14,8 +14,7 @@ const RESOURCES_SCHEMA = {
14
14
  properties: {
15
15
  src: {
16
16
  type: 'string',
17
- // @ts-expect-error TS7006
18
- __validate: (s) => {
17
+ __validate: (s: string) => {
19
18
  if (s.length === 0) {
20
19
  return 'Must not be empty';
21
20
  }