We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1530efa + e2d537b commit c731694Copy full SHA for c731694
package.json
@@ -57,5 +57,5 @@
57
"test:watch": "jest --updateSnapshot --watchAll"
58
},
59
"types": "dist/index.d.ts",
60
- "version": "0.0.2-rc.0"
+ "version": "0.0.2-rc.1"
61
}
src/main.ts
@@ -19,7 +19,7 @@ export const constants = _constants;
19
20
export const Tag = {} as Readonly<TagTypeMap>;
21
for( let k in constants ) {
22
- if( !k.endsWith( '-TAG' ) ) { continue }
+ if( !k.endsWith( '_TAG' ) ) { continue }
23
// istanbul ignore next
24
Tag[ k.slice( 0, -4 ) ] = constants[ k ];
25
};
0 commit comments