@eggjs/tegg-loader 1.1.1 → 1.4.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.3.0](https://github.com/eggjs/tegg/compare/v1.2.0...v1.3.0) (2022-07-01)
7
+
8
+ **Note:** Version bump only for package @eggjs/tegg-loader
9
+
10
+
11
+
12
+
13
+
6
14
  # [0.2.0](https://github.com/eggjs/tegg/compare/v0.1.19...v0.2.0) (2022-01-20)
7
15
 
8
16
  **Note:** Version bump only for package @eggjs/tegg-loader
package/dist/index.js CHANGED
@@ -1,7 +1,11 @@
1
1
  "use strict";
2
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
3
  if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
5
9
  }) : (function(o, m, k, k2) {
6
10
  if (k2 === undefined) k2 = k;
7
11
  o[k2] = m[k];
@@ -13,4 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
13
17
  __exportStar(require("./src/LoaderFactory"), exports);
14
18
  __exportStar(require("./src/LoaderUtil"), exports);
15
19
  require("./src/impl/ModuleLoader");
16
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQSxzREFBb0M7QUFDcEMsbURBQWlDO0FBRWpDLG1DQUFpQyJ9
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsc0RBQW9DO0FBQ3BDLG1EQUFpQztBQUVqQyxtQ0FBaUMifQ==
@@ -1,5 +1,5 @@
1
1
  import { EggLoadUnitTypeLike, Loader } from '@eggjs/tegg-metadata';
2
- export declare type LoaderCreator = (unitPath: string) => Loader;
2
+ export type LoaderCreator = (unitPath: string) => Loader;
3
3
  export declare class LoaderFactory {
4
4
  private static loaderCreatorMap;
5
5
  static createLoader(unitPath: string, type: EggLoadUnitTypeLike): Loader;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eggjs/tegg-loader",
3
- "version": "1.1.1",
3
+ "version": "1.4.0",
4
4
  "description": "tegg default loader implement",
5
5
  "keywords": [
6
6
  "egg",
@@ -36,14 +36,14 @@
36
36
  "node": ">=14.0.0"
37
37
  },
38
38
  "dependencies": {
39
- "@eggjs/core-decorator": "^1.1.1",
40
- "@eggjs/tegg-common-util": "^1.1.1",
41
- "@eggjs/tegg-metadata": "^1.1.1",
39
+ "@eggjs/core-decorator": "^1.4.0",
40
+ "@eggjs/tegg-common-util": "^1.2.0",
41
+ "@eggjs/tegg-metadata": "^1.4.0",
42
42
  "globby": "^10.0.2",
43
43
  "is-type-of": "^1.2.1"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "9d4984de5de24ac446d70fe8f5f0108afc160521"
48
+ "gitHead": "6bd085c1c265921d31110811f4d707875dc7acea"
49
49
  }