@atlaspack/validator-typescript 2.12.1-dev.3368 → 2.12.1-dev.3401

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.
@@ -124,7 +124,7 @@ function tryCreateLanguageService(config, asset, options) {
124
124
  }
125
125
  }
126
126
 
127
- /** Translates semantic diagnostics (from TypeScript) into a ValidateResult that Atlaspack understands. */
127
+ /** Translates semantic diagnostics (from TypeScript) into a ValidateResult that Parcel understands. */
128
128
  function getValidateResultFromDiagnostics(filePath, diagnostics) {
129
129
  let validatorResult = {
130
130
  warnings: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/validator-typescript",
3
- "version": "2.12.1-dev.3368+af1db7f65",
3
+ "version": "2.12.1-dev.3401+b483af77f",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -13,14 +13,14 @@
13
13
  "source": "src/TypeScriptValidator.js",
14
14
  "engines": {
15
15
  "node": ">= 16.0.0",
16
- "atlaspack": "^2.12.1-dev.3368+af1db7f65"
16
+ "parcel": "^2.12.1-dev.3401+b483af77f"
17
17
  },
18
18
  "dependencies": {
19
- "@atlaspack/diagnostic": "2.12.1-dev.3368+af1db7f65",
20
- "@atlaspack/plugin": "2.12.1-dev.3368+af1db7f65",
21
- "@atlaspack/ts-utils": "2.12.1-dev.3368+af1db7f65",
22
- "@atlaspack/types": "2.12.1-dev.3368+af1db7f65",
23
- "@atlaspack/utils": "2.12.1-dev.3368+af1db7f65"
19
+ "@atlaspack/diagnostic": "2.12.1-dev.3401+b483af77f",
20
+ "@atlaspack/plugin": "2.12.1-dev.3401+b483af77f",
21
+ "@atlaspack/ts-utils": "2.12.1-dev.3401+b483af77f",
22
+ "@atlaspack/types": "2.12.1-dev.3401+b483af77f",
23
+ "@atlaspack/utils": "2.12.1-dev.3401+b483af77f"
24
24
  },
25
25
  "devDependencies": {
26
26
  "typescript": ">=3.0.0"
@@ -28,5 +28,5 @@
28
28
  "peerDependencies": {
29
29
  "typescript": ">=3.0.0"
30
30
  },
31
- "gitHead": "af1db7f65c4816917ddf83716deedc536a1b8b27"
31
+ "gitHead": "b483af77f02d1258c8dad156e097b94f83671d8e"
32
32
  }
@@ -138,7 +138,7 @@ function tryCreateLanguageService(
138
138
  }
139
139
  }
140
140
 
141
- /** Translates semantic diagnostics (from TypeScript) into a ValidateResult that Atlaspack understands. */
141
+ /** Translates semantic diagnostics (from TypeScript) into a ValidateResult that Parcel understands. */
142
142
  function getValidateResultFromDiagnostics(
143
143
  filePath: string,
144
144
  diagnostics: $ReadOnlyArray<Diagnostic>,