Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@xylit/ssg

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xylit/ssg - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

4

package.json
{
"name": "@xylit/ssg",
"version": "0.0.2",
"version": "0.0.3",
"description": "A pure static site generator",
"homepage": "https://xylit.dev/",
"homepage": "https://ssg.xylit.dev/",
"repository": {

@@ -7,0 +7,0 @@ "type": "git",

<div align="center">
![Xylit SSG](https://xylit.dev/_astro/logo.C-IlfLKp_Z24Y88P.svg "Xylit SSG")
![Xylit SSG](https://ssg.xylit.dev/_astro/logo.C-IlfLKp_Z24Y88P.svg "Xylit SSG")
[Xylit SSG](https://xylit.dev) is a powerful static site generator:
[Xylit SSG](https://ssg.xylit.dev) is a powerful static site generator:
Being Less Bloated... Being More Straightforward!

@@ -12,3 +12,3 @@

Please follow the [official documentation](https://xylit.dev/getting-started/installation-and-setup/).
Please follow the [official documentation](https://ssg.xylit.dev/getting-started/installation-and-setup/).

@@ -15,0 +15,0 @@ ## `.ssg.js`-Format

@@ -10,9 +10,8 @@ import { resolve } from "node:path";

const cwd = conf.cwd ?? process.cwd();
const cwd = process.cwd();
export default {
cwd,
input: resolve(cwd, conf.input ?? "pages"),
output: resolve(cwd, conf.output ?? "dist"),
static: resolve(cwd, conf.static ?? "public"),
input: resolve(cwd, conf.input ?? cwd),
output: resolve(cwd, conf.output ?? "_site"),
style: {

@@ -19,0 +18,0 @@ cssModules: (cm => ({

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc