qlogicae_aklot 1.0.0 → 1.3.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,50 @@
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.3.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
+ "documents"
24
+ ],
25
+ "license": "MIT",
26
+ "private": false,
27
+ "scripts": {
28
+ "clean": "bunx rimraf build",
29
+ "format": "bunx prettier --config './configurations/.prettierrc' --write .",
30
+ "format:check": "bunx prettier --config './configurations/.prettierrc' --check .",
31
+ "lint": "bunx eslint --config './configurations/eslint.config.js' .",
32
+ "transpile": "bunx tsc --project './configurations/tsconfig.json'",
33
+ "bundle": "bun './configurations/esbuild.js'",
34
+ "build": "bun run clean && bun run format && bun run lint && bun run transpile && bun run bundle",
35
+ "test:unit": "bunx vitest run --watch=false --config './configurations/vitest.unit.config.ts' --reporter=verbose --coverage",
36
+ "test:bench": "bunx vitest bench --watch=false --config './configurations/vitest.bench.config.ts'",
37
+ "test": "bun run test:unit && bun run test:bench",
38
+ "deploy:check": "npm pack --dry-run",
39
+ "deploy:pre": "git add . && git commit -m 'deployment attempt' && git push",
40
+ "deploy:post": "bun run build && bun publish",
41
+ "deploy:major": "bun run deploy:pre && npm version major && bun run deploy:post",
42
+ "deploy:minor": "bun run deploy:pre && npm version minor && bun run deploy:post",
43
+ "deploy:patch": "bun run deploy:pre && npm version patch && bun run deploy:post"
44
+ },
45
+ "type": "module",
46
+ "types": "./build/index.d.ts",
47
+ "dependencies": {
48
+ "pino": "^10.3.1"
49
+ }
28
50
  }
@@ -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
- }
File without changes