Skip to content

Commit

Permalink
Update package configurations, README, and CI workflows
Browse files Browse the repository at this point in the history
- Added repository information to package.json.
- Updated package manager version to [email protected].
- Changed CI and CodeQL badge links in README to point to the new repository.
- Updated clone instructions in README to reflect the new repository URL.
- Enhanced CI workflow by upgrading pnpm action to v4 and adjusting installation parameters.
- Bumped version for @tokenizin/config package to 0.2.0 and added CHANGELOG.
- Added CHANGELOG for ai-repomap package with semantic bump.
  • Loading branch information
elix1er committed Dec 19, 2024
1 parent 56a4265 commit d413e70
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 16 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
node-version: '20'

- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: 8
version: 8.x
dest: ~/setup-pnpm
run_install: null
package_json_file: package.json
standalone: false

- name: Install dependencies
run: pnpm install
Expand All @@ -46,12 +50,16 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
node-version: '20'

- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: 8
version: 8.x
dest: ~/setup-pnpm
run_install: null
package_json_file: package.json
standalone: false

- name: Install dependencies
run: pnpm install
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
[![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge&logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
[![Node.js](https://img.shields.io/badge/Node.js-339933?style=for-the-badge&logo=nodedotjs&logoColor=white)](https://nodejs.org/)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=for-the-badge)](LICENSE)
[![CI](https://img.shields.io/github/actions/workflow/status/tokenizin-agency/tokenizin/ci.yml?branch=main&style=for-the-badge&label=CI)](https://github.com/tokenizin-agency/tokenizin/actions/workflows/ci.yml)
[![CodeQL](https://img.shields.io/github/actions/workflow/status/tokenizin-agency/tokenizin/codeql.yml?branch=main&style=for-the-badge&label=CodeQL)](https://github.com/tokenizin-agency/tokenizin/actions/workflows/codeql.yml)
[![CI](https://img.shields.io/github/actions/workflow/status/tokenizin-agency/aicore/ci.yml?branch=main&style=for-the-badge&label=CI)](https://github.com/tokenizin-agency/aicore/actions/workflows/ci.yml)
[![CodeQL](https://img.shields.io/github/actions/workflow/status/tokenizin-agency/aicore/codeql.yml?branch=main&style=for-the-badge&label=CodeQL)](https://github.com/tokenizin-agency/aicore/actions/workflows/codeql.yml)

</div>

Expand Down Expand Up @@ -38,8 +38,8 @@ A powerful monorepo of AI development tools designed to enhance your coding work

```bash
# Clone the repository
git clone https://github.com/tokenizin-agency/tokenizin.git
cd tokenizin
git clone https://github.com/tokenizin-agency/aicore.git
cd aicore

# Install dependencies
pnpm install
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"private": true,
"version": "0.0.0",
"description": "A powerful monorepo of AI development tools",
"repository": {
"type": "git",
"url": "https://github.com/tokenizin-agency/aicore.git"
},
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
Expand All @@ -13,11 +17,7 @@
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"packageManager": "[email protected]",
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/ai-repomap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

### Minor Changes

- semantic bump

## 0.2.0

### Minor Changes

- e2b2dd9: gen
- added classes and more inspection output

Expand Down
7 changes: 7 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @tokenizin/config

## 0.2.0

### Minor Changes

- semantic bump
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tokenizin/config",
"version": "0.1.0",
"version": "0.2.0",
"private": true,
"main": "index.js",
"files": [
Expand Down

0 comments on commit d413e70

Please sign in to comment.