chore: Let the journey begin
This commit is contained in:
18
.editorconfig
Normal file
18
.editorconfig
Normal file
@@ -0,0 +1,18 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
charset = utf-8
|
||||
|
||||
[*.{js,ts,json}]
|
||||
indent_style = tab
|
||||
trim_trailing_whitespace = true
|
||||
tab_width = 4
|
||||
|
||||
[*.json]
|
||||
tab_width = 2
|
||||
|
||||
[*.{yml,yaml}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
node_modules
|
||||
4
.nova/Configuration.json
Normal file
4
.nova/Configuration.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"workspace.art_style" : 0,
|
||||
"workspace.name" : "Tabshift Javascript-Packages"
|
||||
}
|
||||
5
LICENSE
Normal file
5
LICENSE
Normal file
@@ -0,0 +1,5 @@
|
||||
Copyright (C) Astzweig GmbH & Co. KG - All Rights Reserved
|
||||
|
||||
Unauthorized copying of this file, via any medium is strictly prohibited
|
||||
Proprietary and confidential
|
||||
Written by T. R. Bernstein <137705289+trbernstein@users.noreply.github.com>, 2024-07-01
|
||||
39
cog.toml
Normal file
39
cog.toml
Normal file
@@ -0,0 +1,39 @@
|
||||
from_latest_tag = false
|
||||
ignore_merge_commits = false
|
||||
disable_changelog = false
|
||||
disable_bump_commit = false
|
||||
generate_mono_repository_global_tag = true
|
||||
generate_mono_repository_package_tags = true
|
||||
branch_whitelist = [
|
||||
"main",
|
||||
"release/**"
|
||||
]
|
||||
skip_ci = "[skip ci]"
|
||||
skip_untracked = false
|
||||
pre_bump_hooks = []
|
||||
post_bump_hooks = []
|
||||
pre_package_bump_hooks = [
|
||||
"echo 'upgrading {{package}}' to {{version}}",
|
||||
"node version {{version}}"
|
||||
]
|
||||
post_package_bump_hooks = []
|
||||
tag_prefix = "v"
|
||||
|
||||
[git_hooks.commit-msg]
|
||||
script = """#!/bin/sh
|
||||
set -e
|
||||
cog verify --file $1
|
||||
cog check
|
||||
"""
|
||||
|
||||
[commit_types]
|
||||
|
||||
[changelog]
|
||||
path = "CHANGELOG.md"
|
||||
authors = [
|
||||
{ signature = "T. R. Bernstein", username = "trbernstein" }
|
||||
]
|
||||
|
||||
[bump_profiles]
|
||||
|
||||
[packages]
|
||||
12
package.json
Normal file
12
package.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"private": true,
|
||||
"name": "tabshift-javascript-packages",
|
||||
"description": "Shared Javascript packages of Tabshift",
|
||||
"version": "1.0.0",
|
||||
"author": "T. R. Bernstein <ljspkgs01-project@tabshift.dev>",
|
||||
"license": "UNLICENSED",
|
||||
"packageManager": "pnpm@10.4.1",
|
||||
"devDependencies": {
|
||||
"prettier": "^3.5.2"
|
||||
}
|
||||
}
|
||||
24
pnpm-lock.yaml
generated
Normal file
24
pnpm-lock.yaml
generated
Normal file
@@ -0,0 +1,24 @@
|
||||
lockfileVersion: '9.0'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
devDependencies:
|
||||
prettier:
|
||||
specifier: ^3.5.2
|
||||
version: 3.5.2
|
||||
|
||||
packages:
|
||||
|
||||
prettier@3.5.2:
|
||||
resolution: {integrity: sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==}
|
||||
engines: {node: '>=14'}
|
||||
hasBin: true
|
||||
|
||||
snapshots:
|
||||
|
||||
prettier@3.5.2: {}
|
||||
2
pnpm-workspace.yaml
Normal file
2
pnpm-workspace.yaml
Normal file
@@ -0,0 +1,2 @@
|
||||
packages:
|
||||
- 'packages/*'
|
||||
Reference in New Issue
Block a user