Skip to content

Commit

Permalink
adopting lerna publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhouston committed Nov 29, 2023
1 parent 3e6568c commit 2bc064d
Show file tree
Hide file tree
Showing 34 changed files with 19,566 additions and 11,363 deletions.
7 changes: 7 additions & 0 deletions .huskyrc
@@ -0,0 +1,7 @@
{
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}
2 changes: 2 additions & 0 deletions .vscode/settings.json
Expand Up @@ -8,7 +8,9 @@
"GLTF",
"interruptible",
"lerp",
"nodenext",
"Nullary",
"offscreencanvas",
"outfile",
"reactflow",
"reserialization",
Expand Down
1 change: 1 addition & 0 deletions apps/exec-graph/package.json
@@ -1,6 +1,7 @@
{
"name": "exec-graph",
"version": "0.0.1",
"private": true,
"type": "module",
"bin": "./bin/cli.js",
"main": "./dist/index.js",
Expand Down
1 change: 0 additions & 1 deletion apps/export-node-spec/package.json
Expand Up @@ -4,7 +4,6 @@
"private": true,
"type": "module",
"bin": "./bin/cli.js",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"source": "./src/index.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion apps/export-node-spec/src/index.ts
Expand Up @@ -92,7 +92,7 @@ export const main = async () => {
}
csvRows.push(csvRow);
});
stringify(csvRows, async (err, csvOutput) => {
stringify(csvRows, async (_err, csvOutput) => {
await fs.writeFile(outputPath, csvOutput, {
encoding: 'utf-8'
});
Expand Down
3 changes: 2 additions & 1 deletion apps/graph-editor/package.json
Expand Up @@ -2,9 +2,10 @@
"name": "graph-editor",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"build": "tsc && vite build",
"dev": "vite"
"watch": "vite"
},
"dependencies": {
"@behave-graph/core": "*",
Expand Down
1 change: 1 addition & 0 deletions commitlint.config.js
@@ -0,0 +1 @@
export default { extends: ['@commitlint/config-conventional'] };
4 changes: 3 additions & 1 deletion lerna.json
@@ -1,5 +1,7 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useWorkspaces": true,
"version": "0.0.0"
"version": "0.9.12",
"npmClient": "npm",
"packages": ["packages/*"]
}

0 comments on commit 2bc064d

Please sign in to comment.