Skip to content

Commit ae6a7c2

Browse files
authored
fix: alias paths (#41)
* fix: alias paths * bump
1 parent 5120f9d commit ae6a7c2

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @graphprotocol/grc-20
22

3+
## 0.6.4
4+
5+
### Patch Changes
6+
7+
- fix aliased paths
8+
39
## 0.6.3
410

511
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/grc-20",
3-
"version": "0.6.3",
3+
"version": "0.6.4",
44
"license": "MIT",
55
"module": "./dist/index.js",
66
"types": "./dist/index.d.ts",

src/graph/helpers/create-default-properties.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { COVER_PROPERTY, DESCRIPTION_PROPERTY, NAME_PROPERTY } from '~/src/core/ids/system.js';
1+
import { COVER_PROPERTY, DESCRIPTION_PROPERTY, NAME_PROPERTY } from '../../core/ids/system.js';
22
import { Relation } from '../../relation.js';
33
import { Triple } from '../../triple.js';
44
import type { DefaultProperties, Op } from '../../types.js';

src/graph/helpers/create-properties.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { generate } from '~/src/id.js';
2-
import { Relation } from '~/src/relation.js';
3-
import { Triple } from '~/src/triple.js';
4-
import type { PropertiesParam } from '~/src/types.js';
1+
import { generate } from '../../id.js';
2+
import { Relation } from '../../relation.js';
3+
import { Triple } from '../../triple.js';
4+
import type { PropertiesParam } from '../../types.js';
55
import type { Op } from '../../types.js';
66

77
type CreatePropertiesParams = {

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
"declarationMap": true,
4141
"paths": {
4242
"~/*": ["./*"],
43-
"@geogenesis/*": ["../*"]
4443
}
4544
}
4645
}

0 commit comments

Comments
 (0)