@mrshmllw/campfire 1.0.0-crumbs-feature-adding-some-default-configs.5 → 1.0.1-crumbs-feature-adding-peer-dep.1

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/CHANGELOG.md ADDED
@@ -0,0 +1,17 @@
1
+ ## 1.0.0 (2025-02-06)
2
+
3
+ ### Features
4
+
5
+ * adding default release.config ([659c171](https://github.com/marshmallow-insurance/campfire/commit/659c171e21c6fc6858d5b6d967c316c6f2dcd6f8))
6
+
7
+ ### Bug Fixes
8
+
9
+ * allowJs in tsconfig so we can actually use configs ([05c822e](https://github.com/marshmallow-insurance/campfire/commit/05c822eaf3ef47f4036ef9e55da82a0294df4398))
10
+ * creating clearer build dir ([08ec293](https://github.com/marshmallow-insurance/campfire/commit/08ec293cc7d0d1dca9e443a27804d9258c2c8a7c))
11
+ * initial commit ([e0efc31](https://github.com/marshmallow-insurance/campfire/commit/e0efc310c4c603df058d1cfc244695d5a4923f67))
12
+ * undoing tsconfig refactor ([0d7080f](https://github.com/marshmallow-insurance/campfire/commit/0d7080fe839731b4e6c9716d707a7335ebc68d72))
13
+ * update workflow to use actions/create-github-app-token ([705884a](https://github.com/marshmallow-insurance/campfire/commit/705884a75cfba1d997457266a2d2b3b3262b193e))
14
+
15
+ ### Refactors
16
+
17
+ * tsconfig and exports ([7a48843](https://github.com/marshmallow-insurance/campfire/commit/7a488435aaa186f55150ea49c8141d20b654c882))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrshmllw/campfire",
3
- "version": "1.0.0-crumbs-feature-adding-some-default-configs.5",
3
+ "version": "1.0.1-crumbs-feature-adding-peer-dep.1",
4
4
  "description": "Collection of toasty utils and configs used by Marshmallow Technology",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -17,6 +17,11 @@
17
17
  "dependencies": {
18
18
  "typescript": "^5.7.3"
19
19
  },
20
+ "peerDependencies": {
21
+ "eslint": "^9.19.0",
22
+ "prettier": "^3.4.2",
23
+ "lint-staged": "^15.4.3"
24
+ },
20
25
  "devDependencies": {
21
26
  "@commitlint/cli": "^19.7.1",
22
27
  "@commitlint/types": "^19.5.0",
@@ -3,10 +3,11 @@
3
3
  "compilerOptions": {
4
4
  "rootDir": "libs",
5
5
  "baseUrl": "libs",
6
- "outDir": "./dist",
7
- "declaration": true,
6
+ "outDir": "./dist"
8
7
  },
9
8
  "exclude": [
9
+ "node_modules",
10
+ "dist",
10
11
  "release.config.js",
11
12
  "commitlint.config.ts",
12
13
  "eslint.config.js",
package/tsconfig.json CHANGED
@@ -8,7 +8,10 @@
8
8
  "esModuleInterop": true,
9
9
  "forceConsistentCasingInFileNames": true,
10
10
  "strict": true,
11
- "skipLibCheck": true
11
+ "skipLibCheck": true,
12
+ "rootDir": "libs",
13
+ "baseUrl": "libs",
14
+ "declaration": true
12
15
  },
13
16
  "include": ["libs/**/*"],
14
17
  "exclude": ["node_modules", "dist"]