Skip to content

Commit

Permalink
🚚 chore(all): up repo
Browse files Browse the repository at this point in the history
  • Loading branch information
angelespejo committed Jan 20, 2025
1 parent d95339e commit 7dfc948
Show file tree
Hide file tree
Showing 35 changed files with 15,788 additions and 6,202 deletions.
34 changes: 19 additions & 15 deletions .changeset/config.json
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": [
]
}
18 changes: 0 additions & 18 deletions .dev/build-bin.mjs

This file was deleted.

17 changes: 0 additions & 17 deletions .dev/build-lib.mjs

This file was deleted.

18 changes: 0 additions & 18 deletions .dev/core.mjs

This file was deleted.

76 changes: 0 additions & 76 deletions .dev/cz-config.cjs

This file was deleted.

13 changes: 13 additions & 0 deletions .dovenv/binarium.config.js
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' ] } },
}
6 changes: 6 additions & 0 deletions .dovenv/const.js
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 : '../',
} )
13 changes: 13 additions & 0 deletions .dovenv/main.js
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,
)
10 changes: 10 additions & 0 deletions .dovenv/rsbuild.config.js
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' },
},
} )
23 changes: 23 additions & 0 deletions .editorconfig
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
Loading

0 comments on commit 7dfc948

Please sign in to comment.