@akanjs/base 0.9.36 → 0.9.38

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/cjs/src/base.js CHANGED
@@ -20,7 +20,8 @@ __export(base_exports, {
20
20
  DataList: () => DataList,
21
21
  Enum: () => Enum,
22
22
  enumOf: () => enumOf,
23
- logo: () => logo
23
+ logo: () => logo,
24
+ version: () => version
24
25
  });
25
26
  module.exports = __toCommonJS(base_exports);
26
27
  class Enum {
@@ -163,14 +164,15 @@ class DataList {
163
164
  return this.values[Symbol.iterator]();
164
165
  }
165
166
  }
167
+ const version = "0.9.0";
166
168
  const logo = `
167
169
  _ _ _
168
170
  / \\ | | ____ _ _ __ (_)___
169
171
  / _ \\ | |/ / _' | '_ \\ | / __|
170
172
  / ___ \\| < (_| | | | |_ | \\__ \\
171
173
  /_/ \\_\\_|\\_\\__,_|_| |_(_)/ |___/
172
- |__/
174
+ |__/ ver ${version}
173
175
  ? See more details on docs https://www.akanjs.com/docs
174
- \u2605 Star Akanjs on GitHub https://github.com/akan-team/akanjs
176
+ \u2605 Star Akanjs on GitHub https://github.com/aka-bassman/akanjs
175
177
 
176
178
  `;
package/esm/src/base.js CHANGED
@@ -138,20 +138,22 @@ class DataList {
138
138
  return this.values[Symbol.iterator]();
139
139
  }
140
140
  }
141
+ const version = "0.9.0";
141
142
  const logo = `
142
143
  _ _ _
143
144
  / \\ | | ____ _ _ __ (_)___
144
145
  / _ \\ | |/ / _' | '_ \\ | / __|
145
146
  / ___ \\| < (_| | | | |_ | \\__ \\
146
147
  /_/ \\_\\_|\\_\\__,_|_| |_(_)/ |___/
147
- |__/
148
+ |__/ ver ${version}
148
149
  ? See more details on docs https://www.akanjs.com/docs
149
- \u2605 Star Akanjs on GitHub https://github.com/akan-team/akanjs
150
+ \u2605 Star Akanjs on GitHub https://github.com/aka-bassman/akanjs
150
151
 
151
152
  `;
152
153
  export {
153
154
  DataList,
154
155
  Enum,
155
156
  enumOf,
156
- logo
157
+ logo,
158
+ version
157
159
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/base",
3
- "version": "0.9.36",
3
+ "version": "0.9.38",
4
4
  "sourceType": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "main": "./index.js",
14
14
  "engines": {
15
- "node": ">=22"
15
+ "node": ">=20"
16
16
  },
17
17
  "dependencies": {
18
18
  "dayjs": "^1.11.13"
package/src/base.d.ts CHANGED
@@ -43,4 +43,5 @@ export declare class DataList<Light extends {
43
43
  save(): DataList<Light>;
44
44
  [Symbol.iterator](): ArrayIterator<Light>;
45
45
  }
46
- export declare const logo = "\n _ _ _ \n / \\ | | ____ _ _ __ (_)___ \n / _ \\ | |/ / _' | '_ \\ | / __|\n / ___ \\| < (_| | | | |_ | \\__ \\\n /_/ \\_\\_|\\_\\__,_|_| |_(_)/ |___/\n |__/ \n? See more details on docs https://www.akanjs.com/docs\n\u2605 Star Akanjs on GitHub https://github.com/akan-team/akanjs\n\n";
46
+ export declare const version = "0.9.0";
47
+ export declare const logo = "\n _ _ _ \n / \\ | | ____ _ _ __ (_)___ \n / _ \\ | |/ / _' | '_ \\ | / __|\n / ___ \\| < (_| | | | |_ | \\__ \\\n /_/ \\_\\_|\\_\\__,_|_| |_(_)/ |___/\n |__/ ver 0.9.0\n? See more details on docs https://www.akanjs.com/docs\n\u2605 Star Akanjs on GitHub https://github.com/aka-bassman/akanjs\n\n";