@meowdown/core 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ github: [ocavue]
@@ -0,0 +1,25 @@
1
+ name: Setup
2
+ description: Setup the environment
3
+
4
+ inputs:
5
+ node-version:
6
+ description: The version of node.js
7
+ required: false
8
+ default: '24'
9
+
10
+ runs:
11
+ using: composite
12
+ steps:
13
+ - name: Install pnpm
14
+ uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
15
+
16
+ - name: Setup node
17
+ uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
18
+ with:
19
+ node-version: ${{ inputs.node-version }}
20
+ cache: pnpm
21
+ registry-url: 'https://registry.npmjs.org'
22
+
23
+ - name: Install
24
+ run: pnpm install
25
+ shell: bash
@@ -0,0 +1,53 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ pull_request:
9
+ branches:
10
+ - master
11
+
12
+ jobs:
13
+ lint:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17
+
18
+ - uses: ./.github/actions/setup
19
+
20
+ - name: Lint
21
+ run: pnpm run lint
22
+
23
+ typecheck:
24
+ runs-on: ubuntu-latest
25
+ steps:
26
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
27
+
28
+ - uses: ./.github/actions/setup
29
+
30
+ - name: Typecheck
31
+ run: pnpm run typecheck
32
+
33
+ test:
34
+ runs-on: ${{ matrix.os }}
35
+
36
+ strategy:
37
+ matrix:
38
+ node: [22.x, 24.x]
39
+ os: [ubuntu-latest, windows-latest, macos-latest]
40
+ fail-fast: false
41
+
42
+ steps:
43
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
44
+
45
+ - uses: ./.github/actions/setup
46
+ with:
47
+ node-version: ${{ matrix.node }}
48
+
49
+ - name: Build
50
+ run: pnpm run build
51
+
52
+ - name: Test
53
+ run: pnpm run test
@@ -0,0 +1,35 @@
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ jobs:
9
+ version:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: googleapis/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v5.0.0
13
+ id: release-please
14
+ with:
15
+ release-type: node
16
+ outputs:
17
+ release_created: ${{ steps.release-please.outputs.release_created }}
18
+
19
+ publish:
20
+ runs-on: ubuntu-latest
21
+ needs: [version]
22
+ permissions:
23
+ contents: write
24
+ id-token: write
25
+ if: ${{ needs.version.outputs.release_created }}
26
+ steps:
27
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
28
+
29
+ - uses: ./.github/actions/setup
30
+
31
+ - name: Build
32
+ run: pnpm run build
33
+
34
+ - name: Publish to NPM
35
+ run: pnpm publish
@@ -0,0 +1,19 @@
1
+ yarn.lock
2
+ pnpm-lock.yaml
3
+ package-lock.json
4
+ CHANGELOG.md
5
+
6
+ .next
7
+ .cache
8
+ .DS_Store
9
+ .idea
10
+ *.log
11
+ *.tgz
12
+ coverage
13
+ dist
14
+ lib-cov
15
+ logs
16
+ node_modules
17
+ temp
18
+ dist-types
19
+ *.tsbuildinfo
@@ -0,0 +1,4 @@
1
+ {
2
+ "semi": false,
3
+ "singleQuote": true
4
+ }
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ocavue
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # meowdown
2
+
3
+ [![NPM version](https://img.shields.io/npm/v/meowdown?color=a1b858&label=)](https://www.npmjs.com/package/meowdown)
4
+
5
+ ## License
6
+
7
+ MIT
@@ -0,0 +1,3 @@
1
+ import { defineESLintConfig } from '@ocavue/eslint-config'
2
+
3
+ export default defineESLintConfig()
package/package.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "@meowdown/core",
3
+ "type": "module",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "version": "0.0.1"
8
+ }
@@ -0,0 +1 @@
1
+ ignoreWorkspaceRootCheck: true
package/renovate.json ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": ["github>ocavue/config-renovate"]
3
+ }
@@ -0,0 +1,7 @@
1
+ import { describe, expect, it } from 'vitest'
2
+
3
+ describe('should', () => {
4
+ it('exported', () => {
5
+ expect(1).toEqual(1)
6
+ })
7
+ })
package/src/index.ts ADDED
@@ -0,0 +1,2 @@
1
+ export const one = 1
2
+ export const two = 2
package/tsconfig.json ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": "@ocavue/tsconfig/dom/app.json"
3
+ }
@@ -0,0 +1,8 @@
1
+ import { defineConfig } from 'tsdown'
2
+
3
+ export default defineConfig({
4
+ entry: ['src/index.ts'],
5
+ format: ['esm'],
6
+ dts: { build: true },
7
+ fixedExtension: false,
8
+ })