fast-ejs-builder 0.0.2 → 0.0.3

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/bin/index.js CHANGED
File without changes
package/core/index.js CHANGED
@@ -26,7 +26,6 @@ const _rd = (dirname) => {
26
26
  };
27
27
  });
28
28
  } catch (e) {
29
- console.log(e);
30
29
  return [];
31
30
  }
32
31
  };
@@ -64,7 +63,6 @@ const _w = (pathname, data, force = false) => {
64
63
  fs.writeFileSync(_p(pathname), parsed, { encoding: "utf8" });
65
64
  return true;
66
65
  } catch (error) {
67
- console.log(error);
68
66
  return false;
69
67
  }
70
68
  };
package/package.json CHANGED
@@ -1,11 +1,16 @@
1
1
  {
2
2
  "name": "fast-ejs-builder",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Fast-EJS is a simple and fast tool to pre-render EJS templates into static HTML files with clean conventions and flexible data handling.",
5
5
  "keywords": [
6
6
  "tailwind",
7
7
  "html",
8
- "build"
8
+ "build",
9
+ "ejs",
10
+ "cli",
11
+ "builder",
12
+ "css",
13
+ "template"
9
14
  ],
10
15
  "homepage": "https://github.com/D3R50N/fast-ejs#readme",
11
16
  "bugs": {
@@ -22,10 +27,6 @@
22
27
  "bin": {
23
28
  "fast-ejs": "bin/index.js"
24
29
  },
25
- "scripts": {
26
- "test": "echo \"Error: no test specified\" && exit 1",
27
- "dev": "nodemon index.js"
28
- },
29
30
  "dependencies": {
30
31
  "@inquirer/prompts": "^8.2.0",
31
32
  "autoprefixer": "^10.4.23",
@@ -35,5 +36,9 @@
35
36
  "postcss": "^8.5.6",
36
37
  "prettier": "^3.8.0",
37
38
  "tailwindcss": "^3.4.17"
39
+ },
40
+ "scripts": {
41
+ "test": "echo \"Error: no test specified\" && exit 1",
42
+ "dev": "nodemon index.js"
38
43
  }
39
- }
44
+ }