Skip to content

Commit c731694

Browse files
authored
Merge pull request #5 from webKrafters/ts-deploy
qa: tag map export
2 parents 1530efa + e2d537b commit c731694

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@
5757
"test:watch": "jest --updateSnapshot --watchAll"
5858
},
5959
"types": "dist/index.d.ts",
60-
"version": "0.0.2-rc.0"
60+
"version": "0.0.2-rc.1"
6161
}

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const constants = _constants;
1919

2020
export const Tag = {} as Readonly<TagTypeMap>;
2121
for( let k in constants ) {
22-
if( !k.endsWith( '-TAG' ) ) { continue }
22+
if( !k.endsWith( '_TAG' ) ) { continue }
2323
// istanbul ignore next
2424
Tag[ k.slice( 0, -4 ) ] = constants[ k ];
2525
};

0 commit comments

Comments
 (0)