Skip to content

Commit 2bb66a4

Browse files
committed
chore: combine config -> vite.config.ts
1 parent a3196e7 commit 2bb66a4

7 files changed

Lines changed: 159 additions & 169 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ jobs:
3232
with:
3333
node-version: lts/*
3434
cache: true
35-
run-install: false
36-
37-
- name: 📦 Install dependencies (root only, no scripts)
38-
run: vp install --filter . --ignore-scripts
3935

4036
- name: 🔠 Lint project
4137
run: vp run lint
@@ -181,10 +177,6 @@ jobs:
181177
with:
182178
node-version: lts/*
183179
cache: true
184-
run-install: false
185-
186-
- name: 📦 Install dependencies (root only, no scripts)
187-
run: vp install --filter . --ignore-scripts
188180

189181
- name: 🌐 Check for missing or dynamic i18n keys
190182
run: vp run i18n:report

.oxfmtrc.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

.oxlintrc.json

Lines changed: 0 additions & 113 deletions
This file was deleted.

cli/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,26 @@
22
"name": "npmx-connector",
33
"version": "0.0.1",
44
"description": "Local connector for npmx.dev - enables authenticated npm operations from the web UI",
5+
"homepage": "https://npmx.dev",
6+
"bugs": {
7+
"url": "https://github.com/npmx-dev/npmx.dev/issues"
8+
},
59
"license": "MIT",
6-
"type": "module",
710
"repository": {
811
"type": "git",
912
"url": "git+https://github.com/npmx-dev/npmx.dev.git",
1013
"directory": "cli"
1114
},
12-
"bugs": {
13-
"url": "https://github.com/npmx-dev/npmx.dev/issues"
14-
},
15-
"homepage": "https://npmx.dev",
1615
"bin": {
1716
"npmx-connector": "./dist/cli.mjs"
1817
},
19-
"exports": {
20-
".": "./dist/index.mjs"
21-
},
2218
"files": [
2319
"dist"
2420
],
21+
"type": "module",
22+
"exports": {
23+
".": "./dist/index.mjs"
24+
},
2525
"scripts": {
2626
"build": "tsdown",
2727
"dev": "NPMX_CLI_DEV=true node src/cli.ts",

docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"name": "npmx-docs",
33
"private": true,
44
"description": "npmx public docs site",
5+
"bugs": {
6+
"url": "https://github.com/npmx-dev/npmx.dev/issues"
7+
},
58
"license": "MIT",
69
"repository": {
710
"type": "git",
811
"url": "git+https://github.com/npmx-dev/npmx.dev.git",
912
"directory": "docs"
1013
},
11-
"bugs": {
12-
"url": "https://github.com/npmx-dev/npmx.dev/issues"
13-
},
1414
"scripts": {
1515
"dev": "nuxt dev",
1616
"build": "nuxt build",

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "npmx",
3-
"license": "MIT",
4-
"private": true,
5-
"type": "module",
63
"version": "0.0.0",
4+
"private": true,
5+
"license": "MIT",
76
"author": {
87
"name": "Daniel Roe",
98
"email": "daniel@roe.dev",
109
"url": "https://roe.dev"
1110
},
11+
"type": "module",
1212
"scripts": {
1313
"build": "nuxt build",
1414
"build:lunaria": "node ./lunaria/lunaria.ts",

0 commit comments

Comments
 (0)