Skip to content

Commit

Permalink
Fix installer
Browse files Browse the repository at this point in the history
  • Loading branch information
ursnj committed Oct 25, 2024
1 parent ac07a4e commit 229efb8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "seo-master",
"version": "1.0.0",
"version": "1.1.0",
"private": false,
"sideEffects": false,
"description": "SEO Master is a powerful all-in-one tool developed to boost your website's visibility and rankings. With features like automatic sitemap generation, customizable robots.txt creation, SEO-optimized metadata, Image assets generation and seamless integration with major search engines.",
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/usr/bin/env node

import { readFileSync } from "fs";
import { Command } from "commander";
import { generateImages } from "./images.js";
import { generateSitemap, validateSitemap } from "./sitemaps.js";
import {generateMetaTags, validateMetaTags} from "./metatags.js";
import { generateRobots, validateRobots } from "./robots.js";
import { validateChangefreq, validateDepth, validateOutput, validateWebsite } from "./utils.js";
const { name, version, description } = JSON.parse(readFileSync("./package.json", "utf8"));
import packageJSON from "../package.json" assert { type: 'json' };
const { name, version, description } = packageJSON;

const program = new Command();

Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"outDir": "./dist",
"rootDir": "./src",
Expand Down

0 comments on commit 229efb8

Please sign in to comment.