Skip to content

Commit

Permalink
fix(__dir):fixing to abosolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
VigneshKna committed Sep 27, 2024
1 parent c299897 commit 7ac8e07
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/js/config.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[DEFAULT]
package_name = @how2validate/how2validate
version = 0.0.1-beta.4
version = 0.0.1-beta.5

[SECRET]
secret_active = Active
Expand Down
4 changes: 2 additions & 2 deletions src/js/how2validate/utility/config_utility.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as path from "path";
import * as fs from "fs";
const fs = require('fs');
const path = require('path');

interface Config {
DEFAULT?: {
Expand Down
2 changes: 1 addition & 1 deletion src/js/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@how2validate/how2validate",
"version": "0.0.2-beta.7",
"version": "0.0.2-beta.8",
"license": "MIT",
"exports": "./how2validate/index.ts",
"publish": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "how2validate",
"version": "0.0.1-beta.4",
"version": "0.0.1-beta.5",
"description": "A CLI tool to validate secrets for different services.",
"main": "how2validate/index.ts",
"scripts": {
Expand Down

0 comments on commit 7ac8e07

Please sign in to comment.