qlogicae_aklot 1.3.3 → 1.4.1

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.
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env bun
2
+ export {};
3
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../sources/cli.ts"],"names":[],"mappings":""}
package/library/cli.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env bun
2
+ import { greet } from "./utilities";
3
+ greet("Bin");
4
+ //# sourceMappingURL=cli.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../sources/cli.ts"],
4
+ "sourcesContent": ["#!/usr/bin/env bun\r\n\r\nimport { greet } from './utilities';\r\n\r\ngreet('Bin');\r\n"],
5
+ "mappings": ";AAEA,SAAS,aAAa;AAEtB,MAAM,KAAK;",
6
+ "names": []
7
+ }
package/package.json CHANGED
@@ -1,50 +1,57 @@
1
- {
2
- "name": "qlogicae_aklot",
3
- "version": "1.3.3",
4
- "author": "Vaughn Cedric L. Araneta",
5
- "main": "./library/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
- "library",
23
- "documents"
24
- ],
25
- "license": "MIT",
26
- "private": false,
27
- "scripts": {
28
- "clean": "bunx rimraf library",
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 preparation'",
40
- "deploy:post": "bun run build && git push && 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": "./library/index.d.ts",
47
- "dependencies": {
48
- "pino": "^10.3.1"
49
- }
50
- }
1
+ {
2
+ "name": "qlogicae_aklot",
3
+ "version": "1.4.1",
4
+ "author": "Vaughn Cedric L. Araneta",
5
+ "main": "./library/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
+ "bin": {
22
+ "qlogicae_aklot": "./sources/cli.ts"
23
+ },
24
+ "files": [
25
+ "library",
26
+ "documents"
27
+ ],
28
+ "license": "MIT",
29
+ "private": false,
30
+ "scripts": {
31
+ "clean": "bunx rimraf library",
32
+ "format": "bunx prettier --config './configurations/.prettierrc' --write .",
33
+ "format:check": "bunx prettier --config './configurations/.prettierrc' --check .",
34
+ "lint": "bunx eslint --config './configurations/eslint.config.js' .",
35
+ "transpile": "bunx tsc --project './configurations/tsconfig.json'",
36
+ "bundle": "bun './configurations/esbuild.js'",
37
+ "build": "bun run clean && bun run format && bun run lint && bun run transpile && bun run bundle",
38
+ "test": "bun run test:bench && bun run test:unit",
39
+ "test:unit": "bunx vitest run --watch=false --config './configurations/vitest.unit.config.ts' --reporter=verbose --coverage",
40
+ "test:bench": "bunx vitest bench --watch=false --config './configurations/vitest.bench.config.ts' --coverage",
41
+ "deploy:check": "npm pack --dry-run",
42
+ "workflow:develop": "bun run build",
43
+ "workflow:test": "bun run build && bun run test",
44
+ "workflow:test:unit": "bun run build && bun run test:unit",
45
+ "workflow:test:bench": "bun run build && bun run test:bench",
46
+ "workflow:deploy:pre": "bun run build && bun run test && git add . && git commit -m 'deployment preparation'",
47
+ "workflow:deploy:major": "bun run workflow:deploy:pre && npm version major && bun run workflow:deploy:post",
48
+ "workflow:deploy:minor": "bun run workflow:deploy:pre && npm version minor && bun run workflow:deploy:post",
49
+ "workflow:deploy:patch": "bun run workflow:deploy:pre && npm version patch && bun run workflow:deploy:post",
50
+ "workflow:deploy:post": "git push && bun publish"
51
+ },
52
+ "type": "module",
53
+ "types": "./library/index.d.ts",
54
+ "dependencies": {
55
+ "pino": "^10.3.1"
56
+ }
57
+ }
package/sources/cli.ts ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env bun
2
+
3
+ import { greet } from './utilities';
4
+
5
+ greet('Bin');