qlogicae_aklot 1.0.0 → 1.2.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/README.md CHANGED
@@ -1,2 +1,3 @@
1
1
  # qlogicae_aklot
2
+
2
3
  Unofficial VSU-related JavaScript and TypeScript wrapper library
package/build/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- import "./utils";
1
+ export * from './utilities';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../sources/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC"}
package/build/index.js CHANGED
@@ -1 +1,2 @@
1
- import "./utils";
1
+ export * from "./utilities";
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../sources/index.ts"],
4
+ "sourcesContent": ["export * from './utilities';\r\n"],
5
+ "mappings": "AAAA,cAAc;",
6
+ "names": []
7
+ }
@@ -0,0 +1,2 @@
1
+ export declare function greet(name: string): boolean;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../sources/utilities/index.ts"],"names":[],"mappings":"AAIA,wBAAgB,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAI3C"}
@@ -0,0 +1,10 @@
1
+ import pino from "pino";
2
+ const logger = pino();
3
+ function greet(name) {
4
+ logger.info(`Hello ${name}!`);
5
+ return true;
6
+ }
7
+ export {
8
+ greet
9
+ };
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../sources/utilities/index.ts"],
4
+ "sourcesContent": ["import pino from 'pino';\r\n\r\nconst logger = pino();\r\n\r\nexport function greet(name: string): boolean {\r\n\tlogger.info(`Hello ${name}!`);\r\n\r\n\treturn true;\r\n}\r\n"],
5
+ "mappings": "AAAA,OAAO,UAAU;AAEjB,MAAM,SAAS,KAAK;AAEb,SAAS,MAAM,MAAuB;AAC5C,SAAO,KAAK,SAAS,IAAI,GAAG;AAE5B,SAAO;AACR;",
6
+ "names": []
7
+ }
package/package.json CHANGED
@@ -1,28 +1,47 @@
1
1
  {
2
- "name": "qlogicae_aklot",
3
- "version": "1.0.0",
4
- "author": "Vaughn Cedric L. Araneta",
5
- "main": "./build/index.js",
6
- "module": "index.ts",
7
- "devDependencies": {
8
- "@types/bun": "latest",
9
- "rimraf": "^6.1.3",
10
- "typescript": "^6.0.3"
11
- },
12
- "description": "QLogicae Aklot",
13
- "files": [
14
- "build"
15
- ],
16
- "license": "MIT",
17
- "private": false,
18
- "scripts": {
19
- "build": "tsc",
20
- "clean": "rimraf build",
21
- "publish:initial": "bun publish --access public",
22
- "publish:update": "bun publish",
23
- "deploy:initial": "bun run clean && bun run build && bun run publish:initial",
24
- "deploy:update": "bun run clean && bun run build && bun run publish:update"
25
- },
26
- "type": "module",
27
- "types": "./build/index.d.ts"
2
+ "name": "qlogicae_aklot",
3
+ "version": "1.2.0",
4
+ "author": "Vaughn Cedric L. Araneta",
5
+ "main": "./build/index.js",
6
+ "module": "index.ts",
7
+ "devDependencies": {
8
+ "@eslint/js": "^10.0.1",
9
+ "@types/bun": "latest",
10
+ "@vitest/coverage-v8": "4.1.8",
11
+ "esbuild": "^0.28.1",
12
+ "eslint": "^10.4.1",
13
+ "prettier": "^3.8.4",
14
+ "rimraf": "^6.1.3",
15
+ "tsup": "^8.5.1",
16
+ "typescript": "^6.0.3",
17
+ "typescript-eslint": "^8.61.0",
18
+ "vitest": "^4.1.8"
19
+ },
20
+ "description": "QLogicae Aklot",
21
+ "files": [
22
+ "build"
23
+ ],
24
+ "license": "MIT",
25
+ "private": false,
26
+ "scripts": {
27
+ "clean": "bunx rimraf build",
28
+ "format": "bunx prettier --config './configurations/.prettierrc' --write .",
29
+ "format:check": "bunx prettier --config './configurations/.prettierrc' --check .",
30
+ "lint": "bunx eslint --config './configurations/eslint.config.js' .",
31
+ "transpile": "bunx tsc --project './configurations/tsconfig.json'",
32
+ "bundle": "bun './configurations/esbuild.js'",
33
+ "build": "bun run clean && bun run format && bun run lint && bun run transpile && bun run bundle",
34
+ "test:unit": "bunx vitest run --watch=false --config './configurations/vitest.unit.config.ts' --reporter=verbose --coverage",
35
+ "test:bench": "bunx vitest bench --watch=false --config './configurations/vitest.bench.config.ts'",
36
+ "test": "bun run test:unit && bun run test:bench",
37
+ "deploy": "bun run build && bun publish",
38
+ "deploy:major": "npm version major && bun run deploy",
39
+ "deploy:minor": "npm version minor && bun run deploy",
40
+ "deploy:patch": "npm version patch && bun run deploy"
41
+ },
42
+ "type": "module",
43
+ "types": "./build/index.d.ts",
44
+ "dependencies": {
45
+ "pino": "^10.3.1"
46
+ }
28
47
  }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Vaughn Cedric Araneta
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1,2 +0,0 @@
1
- export declare function greet(name: string): void;
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AACA,wBAAgB,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAExC"}
@@ -1,3 +0,0 @@
1
- export function greet(name) {
2
- console.log(`Hello ${name}!`);
3
- }