Skip to content

Commit

Permalink
fix(config-tools): Resolved issue with bad project.json tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
sullivanpj committed Apr 13, 2024
1 parent fd9dbda commit 744c7ee
Show file tree
Hide file tree
Showing 8 changed files with 11,507 additions and 5,105 deletions.
6 changes: 3 additions & 3 deletions packages/config-tools/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@
"verbose": true
}
}
},
"nx-release-publish": {
"executor": "@storm-software/workspace-tools:npm-publish"
}
},
"nx-release-publish": {
"executor": "@storm-software/workspace-tools:npm-publish"
}
}
}
2 changes: 1 addition & 1 deletion packages/config-tools/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"outDir": "../../dist/out-tsc",
"module": "commonjs"
},
"include": ["**/*"],
"include": ["src/**/*.ts", "declarations.d.ts"],
"exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"]
}
2 changes: 1 addition & 1 deletion packages/config/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { getJestConfig } from "@storm-software/testing-tools";

export default getJestConfig("packages/config-schema", true, "config");
export default getJestConfig("packages/config", true, "config");
3 changes: 2 additions & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"url": "https://github.com/storm-software/storm-ops",
"directory": "packages/config"
},
"main": "./index.js",
"main": "./index.cjs",
"module": "./index.js",
"types": "declarations.d.ts",
"dependencies": {
"zod": "3.22.4"
Expand Down
11 changes: 3 additions & 8 deletions packages/config/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
"targets": {
"build": {
"executor": "@nx/esbuild:esbuild",
"outputs": [
"{options.outputPath}"
],
"outputs": ["{options.outputPath}"],
"options": {
"main": "packages/config/src/index.ts",
"outputPath": "dist/packages/config",
Expand All @@ -22,10 +20,7 @@
"skipTypeCheck": false,
"metafile": true,
"minify": true,
"format": [
"cjs",
"esm"
],
"format": ["cjs", "esm"],
"assets": [
{
"input": "./packages/config",
Expand Down Expand Up @@ -69,4 +64,4 @@
"executor": "@storm-software/workspace-tools:npm-publish"
}
}
}
}
13 changes: 3 additions & 10 deletions packages/config/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@
"outDir": "../../dist/out-tsc",
"module": "commonjs"
},
"include": [
"src/**/*.ts",
"declarations.d.ts"
],
"exclude": [
"jest.config.ts",
"src/**/*.spec.ts",
"src/**/*.test.ts"
],
}
"include": ["src/**/*.ts", "declarations.d.ts"],
"exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"]
}
17 changes: 16 additions & 1 deletion packages/linting-tools/src/prettier/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,30 @@
.alexignore
.prettierignore
npm-lock.json
pnpm-lock.json
yarn.lock.json
npm-lock.yml
pnpm-lock.yml
yarn.lock.yml
npm-lock.yaml
pnpm-lock.yaml
yarn.lock.yaml
bun.lockb

**/.git/**
**/.docusaurus/**
**/dist/**
**/dotnet/**
**/node_modules/**
**/.next/**
**/pnpm-lock.yaml/**
**/tools/docker/**
**/__snapshots__/**
**/catalog-package/**
**/*.hbs
**/CODEOWNERS
**/CODE_OF_CONDUCT.md
**/CONTRIBUTING.md
**/LICENSE
**/LICENSE.md

# tailwind.config.js
Loading

0 comments on commit 744c7ee

Please sign in to comment.