Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: a huge update #25

Merged
merged 11 commits into from
May 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3

- name: Set node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version-file: .nvmrc
cache: pnpm
registry-url: 'https://registry.npmjs.org'

Expand All @@ -31,7 +31,10 @@ jobs:
- name: Install Dependencies
run: pnpm i

- name: PNPM build
run: pnpm run build

- name: Publish to NPM
run: pnpm publish --access public --no-git-checks
run: pnpm -r publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,3 @@ lib-cov
logs
node_modules
temp

manifest.json
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
55 changes: 17 additions & 38 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,31 @@
{
// Enable the ESlint flat config support
"eslint.experimental.useFlatConfig": true,

// Disable the default formatter, use eslint instead
"prettier.enable": false,
"editor.formatOnSave": false,

// Auto fix
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},

// Silent the stylistic rules in you IDE, but still auto fix them
"eslint.rules.customizations": [
{
"rule": "style/*",
"severity": "off"
},
{
"rule": "*-indent",
"severity": "off"
},
{
"rule": "*-spacing",
"severity": "off"
},
{
"rule": "*-spaces",
"severity": "off"
},
{
"rule": "*-order",
"severity": "off"
},
{
"rule": "*-dangle",
"severity": "off"
},
{
"rule": "*-newline",
"severity": "off"
},
{
"rule": "*quotes",
"severity": "off"
},
{
"rule": "*semi",
"severity": "off"
}
{ "rule": "style/*", "severity": "off" },
{ "rule": "format/*", "severity": "off" },
{ "rule": "*-indent", "severity": "off" },
{ "rule": "*-spacing", "severity": "off" },
{ "rule": "*-spaces", "severity": "off" },
{ "rule": "*-order", "severity": "off" },
{ "rule": "*-dangle", "severity": "off" },
{ "rule": "*-newline", "severity": "off" },
{ "rule": "*quotes", "severity": "off" },
{ "rule": "*semi", "severity": "off" }
],

// Enable eslint for all supported languages
"eslint.validate": [
"javascript",
Expand All @@ -59,6 +37,7 @@
"markdown",
"json",
"jsonc",
"yaml"
"yaml",
"toml"
]
}
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# @uni-helper/vite-plugin-uni-manifest

使用 TypeScript 编写 uni-app 的 `manifest.json`
使用 TypeScript 编写 `uni-app` 的 `manifest.json`。

<a href="https://www.npmjs.com/package/@uni-helper/vite-plugin-uni-manifest"><img src="https://img.shields.io/npm/v/@uni-helper/vite-plugin-uni-manifest" alt="NPM version"></a></p>

## 相关依赖

- [vite-plugin-uni-manifest](./packages/core) - 核心,Vite 插件
- [manifest-json-schema](./packages/schema) - 为 `uni-app` 的 `manifest.json` 提供 schema

## 安装

Expand All @@ -17,11 +24,11 @@ import Uni from '@dcloudio/vite-plugin-uni'
import UniManifest from '@uni-helper/vite-plugin-uni-manifest'

export default defineConfig({
plugins: [Uni(), UniManifest()],
plugins: [UniManifest(), Uni()],
})
```

创建 `manifest.config.(ts|mts|cts|js|cjs|mjs|json)`, 然后用 TypeScript 编写你的 `manifest.json`
创建 `manifest.config.(ts|mts|cts|js|cjs|mjs|json)`, 然后用 TypeScript 编写你的 `manifest.json`

```ts
// manifest.config.ts
Expand All @@ -32,8 +39,8 @@ export default defineManifestConfig({
})
```

在[这里](./playground/manifest.config.ts),你可以找到 uni-app 默认的 Vite-TS 模版的`manifest.json` 是如何用 TypeScript 编写的
[这里](./packages/playground/manifest.config.ts),你可以找到 `uni-app` 默认的 Vite-TS 模版的 `manifest.json` 是如何用 TypeScript 编写的

## Configuration

查看 [types.ts](./src/types.ts)
请查看 [types.ts](./packages/core/src/types.ts)
9 changes: 9 additions & 0 deletions bump.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { defineConfig } from 'bumpp'

export default defineConfig({
files: [
'package.json',
'packages/core/package.json',
'packages/schema/package.json',
],
})
52 changes: 16 additions & 36 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "@uni-helper/vite-plugin-uni-manifest",
"type": "module",
"version": "0.2.3",
"packageManager": "[email protected]",
"private": true,
"packageManager": "[email protected]",
"description": "Use TypeScript to write manifest.json of uni-app",
"author": "KeJun",
"license": "MIT",
Expand All @@ -14,47 +15,26 @@
"bugs": "https://github.com/uni-helper/vite-plugin-uni-manifest/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"play": "nr -C playground dev:h5",
"stub": "pnpm -r --filter=./packages/* --parallel run stub",
"dev": "pnpm stub",
"build": "rimraf --glob packages/*/dist && pnpm -r --filter=./packages/* run build && pnpm -r run build-post",
"play:mp-weixin": "pnpm dev && pnpm -C packages/playground run dev:mp-weixin",
"build:mp-weixin": "pnpm build && pnpm -C packages/playground run build:mp-weixin",
"play:h5": "pnpm dev && pnpm -C packages/playground run dev:h5",
"build:h5": "pnpm build && pnpm -C packages/playground run build:h5",
"prepublishOnly": "pnpm build",
"release": "bumpp",
"start": "esno src/index.ts",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"c12": "^1.4.2",
"type-fest": "^4.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.25",
"@types/node": "^18.18.4",
"bumpp": "^9.2.0",
"eslint": "^8.51.0",
"esno": "^0.17.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.4.11"
"@antfu/eslint-config": "^2.16.1",
"@types/node": "^20.12.8",
"bumpp": "^9.4.1",
"eslint": "^8.57.0",
"rimraf": "^5.0.5",
"typescript": "^5.4.5",
"unbuild": "^2.0.0"
}
}
41 changes: 41 additions & 0 deletions packages/core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# @uni-helper/vite-plugin-uni-manifest

使用 TypeScript 编写 `uni-app` 的 `manifest.json`。

<a href="https://www.npmjs.com/package/@uni-helper/vite-plugin-uni-manifest"><img src="https://img.shields.io/npm/v/@uni-helper/vite-plugin-uni-manifest" alt="NPM version"></a></p>

## 安装

```bash
pnpm i -D @uni-helper/vite-plugin-uni-manifest
```

## 使用

```ts
// vite.config.ts
import { defineConfig } from 'vite'
import Uni from '@dcloudio/vite-plugin-uni'
import UniManifest from '@uni-helper/vite-plugin-uni-manifest'

export default defineConfig({
plugins: [UniManifest(), Uni()]
})
```

创建 `manifest.config.(ts|mts|cts|js|cjs|mjs|json)`, 然后用 TypeScript 编写你的 `manifest.json`

```ts
// manifest.config.ts
import { defineManifestConfig } from '@uni-helper/vite-plugin-uni-manifest'

export default defineManifestConfig({
// code here...
})
```

在 [这里](../playground/manifest.config.ts),你可以找到 `uni-app` 默认的 Vite-TS 模版的 `manifest.json` 是如何用 TypeScript 编写的。

## Configuration

请查看 [types.ts](./src/types.ts)。
3 changes: 1 addition & 2 deletions build.config.ts → packages/core/build.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export default defineBuildConfig({
clean: true,
rollup: {
emitCJS: true,
inlineDependencies: true,
},
failOnWarn: false,
externals: ['vite'],
})
47 changes: 47 additions & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "@uni-helper/vite-plugin-uni-manifest",
"type": "module",
"version": "0.2.18",
"description": "File system based routing for uni-app applications using Vite",
"author": "KeJun",
"license": "MIT",
"homepage": "https://github.com/uni-helper/vite-plugin-uni-manifest#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/vite-plugin-uni-manifest.git"
},
"bugs": "https://github.com/uni-helper/vite-plugin-uni-manifest/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub"
},
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"c12": "^1.10.0"
},
"devDependencies": {
"vite": "^5.2.11"
}
}
File renamed without changes.
Loading