@akanjs/config 0.9.58 → 0.9.59

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.
@@ -47,7 +47,6 @@ const import_meta = {};
47
47
  const makeAppConfig = (config, props) => {
48
48
  const { name, repoName } = props;
49
49
  return {
50
- rootLib: config.rootLib,
51
50
  libs: config.libs ?? [],
52
51
  backend: {
53
52
  docker: makeDockerfile("backend", config.backend?.docker ?? {}, props),
@@ -89,7 +88,6 @@ const getAppConfig = async (appRoot, props) => {
89
88
  };
90
89
  const makeLibConfig = (config, props) => {
91
90
  return {
92
- rootLib: config.rootLib,
93
91
  libs: config.libs ?? [],
94
92
  backend: {
95
93
  explicitDependencies: config.backend?.explicitDependencies ?? []
@@ -8,7 +8,6 @@ import {
8
8
  const makeAppConfig = (config, props) => {
9
9
  const { name, repoName } = props;
10
10
  return {
11
- rootLib: config.rootLib,
12
11
  libs: config.libs ?? [],
13
12
  backend: {
14
13
  docker: makeDockerfile("backend", config.backend?.docker ?? {}, props),
@@ -50,7 +49,6 @@ const getAppConfig = async (appRoot, props) => {
50
49
  };
51
50
  const makeLibConfig = (config, props) => {
52
51
  return {
53
- rootLib: config.rootLib,
54
52
  libs: config.libs ?? [],
55
53
  backend: {
56
54
  explicitDependencies: config.backend?.explicitDependencies ?? []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/config",
3
- "version": "0.9.58",
3
+ "version": "0.9.59",
4
4
  "sourceType": "module",
5
5
  "module": {
6
6
  "access": "public"
package/src/types.d.ts CHANGED
@@ -27,7 +27,6 @@ export interface DockerConfig {
27
27
  command: string[];
28
28
  }
29
29
  export interface AppConfigResult {
30
- rootLib?: string;
31
30
  libs: string[];
32
31
  backend: {
33
32
  docker: DockerConfig;
@@ -52,7 +51,6 @@ export interface AppConfigResult {
52
51
  };
53
52
  }
54
53
  export interface LibConfigResult {
55
- rootLib?: string;
56
54
  libs: string[];
57
55
  backend: {
58
56
  explicitDependencies: ExplicitDependencies;