@genesislcap/ts-builder 14.438.0 → 14.438.1-chore-fix-ag-grid-types-react.1

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.
@@ -555,7 +555,7 @@ function addCanonicalReferenceFromValue(value, state) {
555
555
  }
556
556
  const record = value;
557
557
  if (typeof record.canonicalReference === 'string') {
558
- const match = record.canonicalReference.match(/^(@[^!]+)!([^:]+):/);
558
+ const match = record.canonicalReference.match(/^([^!]+)!([^:]+):/);
559
559
  if (match) {
560
560
  const [, moduleSpecifier, identifier] = match;
561
561
  if (identifier && /^[A-Za-z_$][A-Za-z0-9_$]*$/.test(identifier)) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/ts-builder",
3
3
  "description": "Typescript builder",
4
- "version": "14.438.0",
4
+ "version": "14.438.1-chore-fix-ag-grid-types-react.1",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "@custom-elements-manifest/analyzer": "^0.8.2",
20
- "@genesislcap/build-kit": "14.438.0",
20
+ "@genesislcap/build-kit": "14.438.1-chore-fix-ag-grid-types-react.1",
21
21
  "consola": "^3.0.2",
22
22
  "copyfiles": "^2.4.1",
23
23
  "pkg-types": "^1.0.2"
@@ -30,5 +30,5 @@
30
30
  "publishConfig": {
31
31
  "access": "public"
32
32
  },
33
- "gitHead": "2aadae08b54d594c850d65c00a18e3ce5064069c"
33
+ "gitHead": "ca0f3828d72cb3e4f732f5f58edf8f21d7341eb5"
34
34
  }
@@ -677,7 +677,7 @@ function addCanonicalReferenceFromValue(value: unknown, state: TypeImportState):
677
677
 
678
678
  const record = value as Record<string, unknown>;
679
679
  if (typeof record.canonicalReference === 'string') {
680
- const match = record.canonicalReference.match(/^(@[^!]+)!([^:]+):/);
680
+ const match = record.canonicalReference.match(/^([^!]+)!([^:]+):/);
681
681
  if (match) {
682
682
  const [, moduleSpecifier, identifier] = match;
683
683
  if (identifier && /^[A-Za-z_$][A-Za-z0-9_$]*$/.test(identifier)) {