@mrshmllw/campfire 4.0.0 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@mrshmllw/campfire",
3
- "version": "4.0.0",
3
+ "version": "6.0.0",
4
4
  "description": "Collection of toasty utils and configs used by Marshmallow Technology",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
5
  "type": "module",
8
6
  "scripts": {
9
7
  "clean": "rimraf ./dist",
10
8
  "test": "vitest run",
11
- "check-types": "tsc --noEmit",
9
+ "check-types": "concurrently --group \"npm run check-tsc\" \"npm run lint\" -s all --timings true",
10
+ "check-tsc": "tsc --noEmit",
11
+ "lint": "eslint .",
12
12
  "build": "npm run clean && tsc --p tsconfig.build.json",
13
13
  "prepublishOnly": "npm run build",
14
14
  "prepare": "husky",
@@ -16,10 +16,6 @@
16
16
  "commitlint": "commitlint --edit"
17
17
  },
18
18
  "exports": {
19
- ".": {
20
- "types": "./dist/index.d.ts",
21
- "import": "./dist/index.js"
22
- },
23
19
  "./configs/*": {
24
20
  "types": "./dist/configs/*.d.ts",
25
21
  "import": "./dist/configs/*.js"
@@ -102,6 +98,7 @@
102
98
  "@typescript-eslint/parser": "^8.47.0",
103
99
  "@typescript-eslint/rule-tester": "^8.47.0",
104
100
  "@typescript-eslint/utils": "^8.49.0",
101
+ "concurrently": "^9.2.1",
105
102
  "conventional-changelog-conventionalcommits": "^9.1.0",
106
103
  "eslint": "^10.0.3",
107
104
  "eslint-config-prettier": "^10.1.8",
@@ -1,5 +0,0 @@
1
- export { default as commitlint } from './commitlint.config.js';
2
- export { default as eslint } from './eslint.config.js';
3
- export { default as lintStaged } from './lint-staged.config.js';
4
- export { default as prettier } from './prettier.config.js';
5
- export { default as release } from './release.config.js';
@@ -1,5 +0,0 @@
1
- export { default as commitlint } from './commitlint.config.js';
2
- export { default as eslint } from './eslint.config.js';
3
- export { default as lintStaged } from './lint-staged.config.js';
4
- export { default as prettier } from './prettier.config.js';
5
- export { default as release } from './release.config.js';
package/dist/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- export { default as commitlintConfig } from './configs/commitlint.config.js';
2
- export { default as eslintConfig } from './configs/eslint.config.js';
3
- export { default as lintStagedConfig } from './configs/lint-staged.config.js';
4
- export { default as prettierConfig } from './configs/prettier.config.js';
5
- export { default as releaseConfig } from './configs/release.config.js';
package/dist/index.js DELETED
@@ -1,7 +0,0 @@
1
- export { default as commitlintConfig } from './configs/commitlint.config.js';
2
- export { default as eslintConfig } from './configs/eslint.config.js';
3
- export { default as lintStagedConfig } from './configs/lint-staged.config.js';
4
- export { default as prettierConfig } from './configs/prettier.config.js';
5
- export { default as releaseConfig } from './configs/release.config.js';
6
- // Note: GitHub workflow templates are available in the workflows/ directory
7
- // Copy them to your .github/workflows/ directory as needed