Skip to content

Commit

Permalink
chore: folder restructure
Browse files Browse the repository at this point in the history
  • Loading branch information
rjoydip committed Sep 2, 2024
1 parent 85581bc commit 8b2e0da
Show file tree
Hide file tree
Showing 100 changed files with 19 additions and 31 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,17 @@ jobs:
- name: 🟢 Install Yarn
run: npm install -g yarn

- name: Run Install
- name: Run Install
run: deno run --allow-read --allow-env --allow-run scripts/_runInstall.ts

- name: ✍ Run Linter
run: |
deno run --allow-read --allow-env --allow-run --allow-sys scripts/_runFormat.ts
deno run --allow-read --allow-env --allow-run --allow-sys scripts/_runCheck.ts
deno run --allow-read --allow-env --allow-run --allow-sys scripts/_runLint.ts
- name: ☰ Run Linter
run: deno run --allow-read --allow-env --allow-run --allow-sys scripts/_runFormat.ts

- name: ✅ Run Check
run: deno run --allow-read --allow-env --allow-run --allow-sys scripts/_runCheck.ts

- name: ⚡ Run Linter
run: deno run --allow-read --allow-env --allow-run --allow-sys scripts/_runLint.ts

- name: 🧪 Run Test
run: deno run --allow-read --allow-env --allow-run scripts/_runTest.ts
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Ok {
snapshot[`testIsPromiseAllOK 1`] = `
Err {
error: Error: Promise all error
at file:///C:/Users/rjoydip/codebase/oss-issue-solving/neverthrow/runtime-deno/564/main.ts:8:56
at file:///C:/Users/rjoydip/codebase/oss-issue-solving/apps/neverthrow/runtime-deno/564/main.ts:13:11
at file:///C:/Users/rjoydip/AppData/Local/deno/npm/registry.npmjs.org/neverthrow/7.0.1/dist/index.cjs.js:100:35
at async file:///C:/Users/rjoydip/codebase/oss-issue-solving/neverthrow/runtime-deno/564/main_test.ts:15:18
at async file:///C:/Users/rjoydip/codebase/oss-issue-solving/apps/neverthrow/runtime-deno/564/main_test.ts:15:18
at async innerWrapped (ext:cli/40_test.js:191:5)
at async exitSanitizer (ext:cli/40_test.js:107:27)
at async outerWrapped (ext:cli/40_test.js:134:14),
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 0 additions & 11 deletions hono/github/runtime-bun/3242/src/public/index.html

This file was deleted.

14 changes: 5 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
{
"name": "oss-issue-solving",
"name": "oss-issue-fix-collection",
"version": "0.0.0",
"description": "This repository contains issue resolving.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"description": "rjoydip open source issue fixing collection",
"workspaces": [
"deno/*",
"hono/*",
"scripts/*",
"neverthrow/*"
"apps/*",
"docs/*",
"scripts/*"
],
"keywords": [],
"author": "rjoydip",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![Formatted with Biome](https://img.shields.io/badge/Biome-latest-60a5fa?style=flat&logo=biome)](https://biomejs.dev/)
[![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/Naereen/StrapDown.js/blob/master/LICENSE)

This repository contains issue resolving.
rjoydip open source issue fixing collection.

## Table of contains

Expand Down
4 changes: 2 additions & 2 deletions scripts/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { exists } from "jsr:@std/fs/exists";
import { join } from "@std/path/join";
import { RuntimeMapper, PackageMapper } from "./types.ts";

export const configPattern = "**/{runtime-*}/**/*{deno,package}.json";
export const installPattern = "**/{runtime-*}/**/*{bun,pnpm-lock}.{lock,yaml}*";
export const configPattern = "apps/**/{runtime-*}/**/*{deno,package}.json";
export const installPattern = "apps/**/{runtime-*}/**/*{bun,pnpm-lock}.{lock,yaml}*";

export const runtimeMapper: RuntimeMapper = {
"package.json": {
Expand Down

0 comments on commit 8b2e0da

Please sign in to comment.