Skip to content

Commit 6237bf3

Browse files
authored
Merge pull request #1 from journeyapps-labs/initial
initial commit
2 parents 36592d8 + 3b6c502 commit 6237bf3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+5303
-1
lines changed

.changeset/dull-parrots-sip.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'@journeyapps-labs/micro-streaming': major
3+
'@journeyapps-labs/micro-codecs': major
4+
'@journeyapps-labs/micro-errors': major
5+
'@journeyapps-labs/micro-schema': major
6+
---
7+
8+
Initial publish

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
trim_trailing_whitespace = true

.envrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
layout node
2+
use node
3+

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.idea/
2+
.vscode
3+
.DS_Store
4+
.swc
5+
6+
node_modules
7+
coverage
8+
dist
9+
10+
yarn-error.log
11+
.pnpm-debug.log
12+
13+
tsconfig.tsbuildinfo

.ncurc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"reject": ["/@opentelemetry.*/", "chalk", "node-fetch", "@types/node-fetch"]
3+
}

.npmrc

Whitespace-only changes.

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v20.15

.prettierrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"semi": true,
3+
"singleQuote": true,
4+
"tabWidth": 2,
5+
"useTabs": false,
6+
"printWidth": 120,
7+
"trailingComma": "none"
8+
}

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1-
# micro
1+
# JourneyApps Labs Micro
2+
3+
Micro-service framework
4+
5+
## Release
6+
7+
### Dev release
8+
9+
1. Ensure a changeset has been created `pnpm changeset`
10+
2. Run https://github.com/journeyapps-labs/common/actions/workflows/dev-packages.yaml the workflow manually on the branch you need
11+
12+
### Production release
13+
14+
1. Ensure a changeset has been created `pnpm changeset`
15+
2. Merge PR and then merge the versions PR which gets created.

package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "micro",
3+
"private": "true",
4+
"packageManager": "pnpm@10.14.0",
5+
"scripts": {
6+
"preinstall": "npx only-allow pnpm",
7+
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\"",
8+
"release": "pnpm build && pnpm changeset publish",
9+
"build": "./node_modules/.bin/tsc --build",
10+
"test": "pnpm run -r test",
11+
"ncu": "ncu -u && pnpm recursive exec -- ncu -u"
12+
},
13+
"devDependencies": {
14+
"@changesets/cli": "^2.29.5",
15+
"npm-check-updates": "^18.0.2",
16+
"prettier": "3.6.2",
17+
"typescript": "^5.9.2"
18+
}
19+
}

0 commit comments

Comments
 (0)