markuplint 3.0.0-dev.290 → 3.0.0-dev.300

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.
@@ -20,7 +20,6 @@ class MLEngine extends Emitter {
20
20
  throw new Error('Never reach error');
21
21
  }
22
22
  const engine = new MLEngine(file, options);
23
- await engine.setup();
24
23
  return engine;
25
24
  }
26
25
  static async toMLFile(target) {
package/lib/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { MLEngine, FromCodeOptions } from './api/index.js';
2
+ export { MLEngineEventMap } from './api/types.js';
2
3
  export * from './i18n.js';
3
4
  export * from './testing-tool/index.js';
4
5
  export * from './types.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "markuplint",
3
- "version": "3.0.0-dev.290+af676442",
3
+ "version": "3.0.0-dev.300+7ab32aca",
4
4
  "description": "An HTML linter for all markup developers",
5
5
  "author": "Yusuke Hirao",
6
6
  "license": "MIT",
@@ -28,17 +28,17 @@
28
28
  "execa": "^8.0.1"
29
29
  },
30
30
  "dependencies": {
31
- "@markuplint/create-rule-helper": "3.0.0-dev.290+af676442",
32
- "@markuplint/file-resolver": "3.0.0-dev.290+af676442",
33
- "@markuplint/html-parser": "3.0.0-dev.290+af676442",
34
- "@markuplint/html-spec": "3.0.0-dev.290+af676442",
35
- "@markuplint/i18n": "3.0.0-dev.290+af676442",
36
- "@markuplint/ml-ast": "3.0.0-dev.290+af676442",
37
- "@markuplint/ml-config": "3.0.0-dev.290+af676442",
38
- "@markuplint/ml-core": "3.0.0-dev.290+af676442",
39
- "@markuplint/ml-spec": "3.0.0-dev.290+af676442",
40
- "@markuplint/rules": "3.0.0-dev.290+af676442",
41
- "@markuplint/shared": "4.0.0-dev.3580+af676442",
31
+ "@markuplint/create-rule-helper": "3.0.0-dev.300+7ab32aca",
32
+ "@markuplint/file-resolver": "3.0.0-dev.300+7ab32aca",
33
+ "@markuplint/html-parser": "3.0.0-dev.300+7ab32aca",
34
+ "@markuplint/html-spec": "3.0.0-dev.300+7ab32aca",
35
+ "@markuplint/i18n": "3.0.0-dev.300+7ab32aca",
36
+ "@markuplint/ml-ast": "3.0.0-dev.300+7ab32aca",
37
+ "@markuplint/ml-config": "3.0.0-dev.300+7ab32aca",
38
+ "@markuplint/ml-core": "3.0.0-dev.300+7ab32aca",
39
+ "@markuplint/ml-spec": "3.0.0-dev.300+7ab32aca",
40
+ "@markuplint/rules": "3.0.0-dev.300+7ab32aca",
41
+ "@markuplint/shared": "4.0.0-dev.3590+7ab32aca",
42
42
  "@types/cli-color": "^2.0.3",
43
43
  "@types/debug": "^4.1.9",
44
44
  "@types/has-yarn": "^1.0.1",
@@ -62,5 +62,5 @@
62
62
  "type-fest": "^4.3.1",
63
63
  "uuid": "^9.0.1"
64
64
  },
65
- "gitHead": "af6764422feecb56d1d84659028f53daf685bb78"
65
+ "gitHead": "7ab32aca316e08a27753da8dceed72550a65d6c8"
66
66
  }