@yozora/tokenizer-ecma-import 2.0.5 → 2.1.0

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.
@@ -1,10 +1,10 @@
1
- import { IPartialYastBlockToken, ITokenizer, IBaseBlockTokenizerProps, IMatchBlockHookCreator, IParseBlockHookCreator, BaseBlockTokenizer, IBlockTokenizer } from '@yozora/core-tokenizer';
1
+ import { IPartialBlockToken, ITokenizer, IBaseBlockTokenizerProps, IMatchBlockHookCreator, IParseBlockHookCreator, BaseBlockTokenizer, IBlockTokenizer } from '@yozora/core-tokenizer';
2
2
  import { EcmaImport, EcmaImportType } from '@yozora/ast';
3
3
 
4
4
  type T = EcmaImportType;
5
5
  type INode = EcmaImport;
6
6
  declare const uniqueName = "@yozora/tokenizer-ecma-import";
7
- type IToken = IPartialYastBlockToken<T> & Omit<EcmaImport, 'type'>;
7
+ type IToken = IPartialBlockToken<T> & Omit<EcmaImport, 'type'>;
8
8
  type IThis = ITokenizer;
9
9
  type ITokenizerProps = Partial<IBaseBlockTokenizerProps>;
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yozora/tokenizer-ecma-import",
3
- "version": "2.0.5",
3
+ "version": "2.1.0",
4
4
  "author": {
5
5
  "name": "guanghechen",
6
6
  "url": "https://github.com/guanghechen/"
@@ -39,9 +39,9 @@
39
39
  "test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
40
40
  },
41
41
  "dependencies": {
42
- "@yozora/ast": "^2.0.5",
43
- "@yozora/character": "^2.0.5",
44
- "@yozora/core-tokenizer": "^2.0.5"
42
+ "@yozora/ast": "^2.1.0",
43
+ "@yozora/character": "^2.1.0",
44
+ "@yozora/core-tokenizer": "^2.1.0"
45
45
  },
46
- "gitHead": "7ba3bab49fe65cf2f57082c0503af73da9356cf0"
46
+ "gitHead": "387a68e8f9154944e2a6a7009a808d076d0659c6"
47
47
  }
package/src/types.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import type { EcmaImport, EcmaImportType } from '@yozora/ast'
2
2
  import type {
3
3
  IBaseBlockTokenizerProps,
4
- IPartialYastBlockToken,
4
+ IPartialBlockToken,
5
5
  ITokenizer,
6
6
  } from '@yozora/core-tokenizer'
7
7
 
@@ -9,7 +9,7 @@ export type T = EcmaImportType
9
9
  export type INode = EcmaImport
10
10
  export const uniqueName = '@yozora/tokenizer-ecma-import'
11
11
 
12
- export type IToken = IPartialYastBlockToken<T> & Omit<EcmaImport, 'type'>
12
+ export type IToken = IPartialBlockToken<T> & Omit<EcmaImport, 'type'>
13
13
 
14
14
  export type IThis = ITokenizer
15
15