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 +1 -0
- package/build/index.d.ts +1 -1
- package/build/index.d.ts.map +1 -1
- package/build/index.js +2 -1
- package/build/index.js.map +7 -0
- package/build/utilities/index.d.ts +2 -0
- package/build/utilities/index.d.ts.map +1 -0
- package/build/utilities/index.js +10 -0
- package/build/utilities/index.js.map +7 -0
- package/package.json +48 -26
- package/build/utils/index.d.ts +0 -2
- package/build/utils/index.d.ts.map +0 -1
- package/build/utils/index.js +0 -3
- /package/{LICENSE → documents/LICENSE} +0 -0
package/README.md
CHANGED
package/build/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
export * from './utilities';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
package/build/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../
|
|
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
|
-
|
|
1
|
+
export * from "./utilities";
|
|
2
|
+
//# sourceMappingURL=index.js.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,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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
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
|
}
|
package/build/utils/index.d.ts
DELETED
|
@@ -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"}
|
package/build/utils/index.js
DELETED
|
File without changes
|