diff --git a/build/nx/executors.json b/build/nx/executors.json index b46727df..b9107bab 100644 --- a/build/nx/executors.json +++ b/build/nx/executors.json @@ -1,8 +1,8 @@ { "executors": { "node-build": { - "implementation": "./src/executors/node-app/executor", - "schema": "./src/executors/node-app/schema.json", + "implementation": "./dist/executors/node-app/executor", + "schema": "./dist/executors/node-app/schema.json", "description": "An executor used to build a NodeJs application" } } diff --git a/build/nx/package.json b/build/nx/package.json index efdef18f..b3489d33 100644 --- a/build/nx/package.json +++ b/build/nx/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/build-nx", - "version": "1.4.1", + "version": "0.0.0", "type": "commonjs", "repository": { "type": "github", @@ -14,9 +14,9 @@ "./package.json": "./package.json", "./migrations.json": "./migrations.json", "./generators.json": "./generators.json", - "./generators/*/schema.json": "./generators/*/schema.json", + "./generators/*": "./dist/generators/*", "./executors.json": "./executors.json", - "./executors/*/schema.json": "./executors/*/schema.json" + "./executors/*": "./dist/executors/*" }, "typings": "./dist/index.d.ts", "peerDependencies": { diff --git a/build/nx/project.json b/build/nx/project.json index fe3dff62..926bb940 100644 --- a/build/nx/project.json +++ b/build/nx/project.json @@ -12,7 +12,9 @@ "commands": [ "pnpm copyfiles LICENSE dist/build/nx", "pnpm copyfiles --up=2 ./build/nx/README.md ./build/nx/package.json ./build/nx/executors.json ./build/nx/generators.json dist/build/nx", - "pnpm copyfiles --up=3 ./build/nx/dist/* dist/build/nx/dist" + "pnpm copyfiles --up=3 ./build/nx/dist/* dist/build/nx/dist", + "pnpm copyfiles --up=4 ./build/nx/dist/executors/*/executor.js ./build/nx/dist/executors/*/executor.d.ts dist/build/nx/dist/executors", + "pnpm copyfiles --up=4 ./build/nx/src/executors/*/schema.json ./build/nx/src/executors/*/schema.d.ts dist/build/nx/dist/executors" ] } } diff --git a/package.json b/package.json index 511e005f..1a328ff9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/monorepo", - "version": "0.5.3", + "version": "1.0.0", "description": "⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.", "repository": { "type": "github",