@akanjs/base 0.9.41 → 0.9.42

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