Skip to content

Commit

Permalink
chore: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
pipinet committed Sep 23, 2024
1 parent 48ae795 commit 6f8bd3c
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 20 deletions.
14 changes: 14 additions & 0 deletions .bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[install]
optional = true
dev = true
peer = true
production = false
frozenLockfile = true
registry = { url = "https://registry.npmjs.org", token = "$NPM_TOKEN"}


[test]
smol = true
coverage = true
coverageThreshold = { line = 0.0, function = 0.0, statement = 0.0 }
coverageSkipTestFiles = false
3 changes: 0 additions & 3 deletions .npmrc

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# mesh
# dorami

To install dependencies:

Expand Down
Binary file modified bun.lockb
Binary file not shown.
23 changes: 14 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@mesh/monorepo",
"name": "@dorami/monorepo",
"module": "index.ts",
"type": "module",
"version": "0.0.0",
Expand All @@ -13,17 +13,15 @@
"link": "bun --filter './packages/*' dev:link",
"release": "bun run build && bunx @morlay/bunpublish",
"build": "NODE_ENV=production && pnpm run build:packages",
"build:check": "pnpm run format:check && pnpm run security:check",
"build:check": "bun run format:check",
"build:packages": "bun run build:lang",
"build:lang": "bun --filter './packages/lang' build",
"dev": "pnpm --filter showcase dev",
"module:dev": "pnpm --filter @primevue/nuxt-module dev",
"security:check": "pnpm audit --prod --audit-level high",
"dev": "bun --filter showcase dev",
"format": "prettier --write \"**/*.{vue,js,mjs,ts,d.ts}\" --cache",
"format:check": "prettier --check \"**/*.{vue,js,mjs,ts,d.ts}\"",
"lint": "eslint . --cache",
"lint:fix": "eslint --fix .",
"test:unit": "pnpm --filter primevue test:unit",
"test:unit": "bun --filter primevue test:unit",
"taze": "taze"
},
"devDependencies": {
Expand All @@ -39,13 +37,20 @@
"eslint": "^9.10.0",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.28.0",
"pnpm": "^9.10.0",
"fs-extra": "^11.2.0",
"prettier": "^3.3.3",
"taze": "^0.16.9",
"typescript": "^5.6.2"
},
"publishConfig": {
"access": "public"
"author": "Qwlabs",
"homepage": "https://github.com/qwlabs/dorami",
"repository": {
"type": "git",
"url": "git+https://github.com/qwlabs/dorami.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/qwlabs/dorami/issues"
},
"engines": {
"node": ">=20.17.0",
Expand Down
1 change: 1 addition & 0 deletions packages/lang/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- TODO
16 changes: 12 additions & 4 deletions packages/lang/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@mesh/lang",
"name": "@dorami/lang",
"version": "0.0.0",
"main": "./src/index.ts",
"module": "./src/index.ts",
Expand Down Expand Up @@ -28,10 +28,18 @@
"devDependencies": {
"tsup": "^8.2.4"
},
"repository": {},
"bugs": {},
"author": "Qwlabs",
"homepage": "https://github.com/qwlabs/dorami",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/qwlabs/dorami.git"
},
"bugs": {
"url": "https://github.com/qwlabs/dorami/issues"
},
"engines": {
"node": ">=20.17.0",
"bun": ">=1"
}
}
}
4 changes: 2 additions & 2 deletions packages/lang/scripts/postbuild.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import path from 'node:path';
import fs from 'fs-extra';
import * as path from 'node:path';
import * as fs from 'fs-extra';
import { clearPackageJson, resolvePath } from '../../../scripts/build-helper';

const { __dirname, __workspace, OUTPUT_DIR } = resolvePath(import.meta.url);
Expand Down
2 changes: 1 addition & 1 deletion packages/lang/scripts/prebuild.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import path from 'node:path';
import * as path from 'node:path';
import { removeBuild, resolvePath, updatePackageJson } from '../../../scripts/build-helper';

removeBuild(import.meta.url);
Expand Down

0 comments on commit 6f8bd3c

Please sign in to comment.