Skip to content

Commit

Permalink
Merge branch 'master' of github.com:michijs/dev-server
Browse files Browse the repository at this point in the history
  • Loading branch information
lsegurado committed Nov 20, 2024
2 parents f08dbb3 + 1d803c8 commit f317e56
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ Development server built on top of esbuild.
<!-- TODO: To generate feature-image require to install roboto -->

![npm][version] [![license][github-license]][github-license-url] ![npm][npm-downloads] ![npm][repo-size]
[![CodeQL](https://github.com/michijs/dev-server/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/michijs/dev-server/actions/workflows/codeql-analysis.yml)
[![Tests](https://github.com/michijs/dev-server/actions/workflows/tests.yml/badge.svg)](https://github.com/michijs/dev-server/actions/workflows/tests.yml)

## Main features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@michijs/dev-server",
"license": "MIT",
"version": "0.7.23-beta.2",
"version": "0.7.23",
"repository": {
"type": "git",
"url": "https://github.com/michijs/dev-server.git"
Expand Down
3 changes: 1 addition & 2 deletions src/actions/generateAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { chromium, type PageScreenshotOptions } from "playwright-core";
import type { PageCallback, Viewport } from "../types.js";
import { exec } from "child_process";
import { getColor } from "colorthief";
import packagejson from '../../package.json'
import packagejson from "../../package.json";

export async function installPlaywright() {
const playwrightVersion = `playwright@${packagejson.dependencies["playwright-core"]}`;
Expand All @@ -36,7 +36,6 @@ export async function installPlaywright() {
});
}


const generatedPath = getPath(
`${config.public.path}/${config.public.assets.path}/generated`,
);
Expand Down

0 comments on commit f317e56

Please sign in to comment.