-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d95339e
commit 7dfc948
Showing
35 changed files
with
15,788 additions
and
6,202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": [ | ||
"@changesets/changelog-github", | ||
{ | ||
"repo": "pigeonposse/personality" | ||
} | ||
], | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "restricted", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"privatePackages": { "version": true, "tag": true }, | ||
"ignore": [] | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": [ | ||
"@changesets/changelog-github", | ||
{ | ||
"repo": "pigeonposse/personality" | ||
} | ||
], | ||
"commit": false, | ||
"fixed": [ | ||
], | ||
"linked": [ | ||
], | ||
"access": "restricted", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"privatePackages": { "version": true, | ||
"tag": true }, | ||
"ignore": [ | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* eslint-disable jsdoc/valid-types */ | ||
import { join } from 'node:path' | ||
|
||
import core from './const.js' | ||
|
||
/** @type import('binarium').ConfigParams */ | ||
export default { | ||
input : join( core.workspaceDir, './build/in/cli.cjs' ), | ||
output : join( process.cwd(), 'build' ), | ||
name : core.corePkg.extra.id, | ||
onlyOs : true, | ||
nodeOptions : { esbuild: { external: [ 'ajv', 'cli-boxes' ] } }, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { getWorkspaceConfig } from '@dovenv/theme-pigeonposse' | ||
|
||
export default await getWorkspaceConfig( { | ||
metaURL : import.meta.url, | ||
path : '../', | ||
} ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { defineConfig } from '@dovenv/core' | ||
import ppTheme from '@dovenv/theme-pigeonposse' | ||
|
||
import core from './const.js' | ||
|
||
const theme = ppTheme( { core } ) | ||
|
||
delete theme.custom.docs | ||
delete theme.check.ws | ||
|
||
export default defineConfig( | ||
theme, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { defineConfig } from '@rsbuild/core' | ||
|
||
export default defineConfig( { | ||
source : { entry: { cli: './src/cli.js' } }, | ||
output : { | ||
distPath : { root: './build/in' }, | ||
target : 'node', | ||
filename : { js: '[name].cjs' }, | ||
}, | ||
} ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# ############################################################################# | ||
# EditorConfig config. | ||
# ############################################################################# | ||
# | ||
# @description Used to maintain consistent code formatting across different code editors and IDEs in a software project. | ||
# @see https://EditorConfig.org | ||
# | ||
# ############################################################################# | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
# Matches multiple files with brace expansion notation | ||
# Set default charset | ||
[*.{js,cjs,mjs,ts,html,svelte}] | ||
charset = utf-8 |
Oops, something went wrong.