Skip to content

Commit

Permalink
pnpm run format
Browse files Browse the repository at this point in the history
Signed-off-by: Sora Morimoto <[email protected]>
  • Loading branch information
smorimoto committed Apr 2, 2024
1 parent 379b2ae commit 0600437
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
- package-ecosystem: 'npm' # See documentation for possible values
directory: '/' # Location of package manifests
schedule:
interval: "weekly"
interval: 'weekly'
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ Integrate ReScript with Vite by:

> If you are looking for a template to quickly start a project using Vite, ReScript and React, take a look at [vitejs-template-react-rescript](https://github.com/jihchi/vitejs-template-react-rescript), the template depends on this plugin.

```sh
# npm
npm i -D @jihchi/vite-plugin-rescript
Expand All @@ -42,7 +41,9 @@ export default defineConfig({
If you're using `require` syntax:

```js
const { default: createReScriptPlugin } = require('@jihchi/vite-plugin-rescript');
const {
default: createReScriptPlugin,
} = require('@jihchi/vite-plugin-rescript');
```

## Using Loader
Expand Down Expand Up @@ -90,7 +91,7 @@ since the paths to the node_modules will be generated as relative to the `lib` f
For HTML entry points, it must be imported using inline JS:

```html
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
4 changes: 2 additions & 2 deletions vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="vitest" />
import { defineConfig } from 'vite'
import { defineConfig } from 'vite';

export default defineConfig({
test: {},
})
});

0 comments on commit 0600437

Please sign in to comment.