@pixpilot/scaffoldfy-configs 0.39.1 → 0.39.2

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @pixpilot/scaffoldfy-configs
2
2
 
3
+ ## 0.39.2
4
+
5
+ ### Patch Changes
6
+
7
+ - remove outdated dependency checks from tests
8
+
3
9
  ## 0.39.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/scaffoldfy-configs",
3
3
  "type": "module",
4
- "version": "0.39.1",
4
+ "version": "0.39.2",
5
5
  "author": "PixPilot <m.doaie@hotmail.com>",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -29,11 +29,11 @@
29
29
  "devDependencies": {
30
30
  "@types/node": "^22.18.11",
31
31
  "eslint": "^9.38.0",
32
+ "@internal/prettier-config": "0.0.1",
32
33
  "@internal/eslint-config": "0.3.0",
33
34
  "@internal/tsdown-config": "0.1.0",
34
35
  "@internal/vitest-config": "0.1.0",
35
- "@pixpilot/scaffoldfy": "0.55.1",
36
- "@internal/prettier-config": "0.0.1"
36
+ "@pixpilot/scaffoldfy": "0.55.1"
37
37
  },
38
38
  "prettier": "@internal/prettier-config",
39
39
  "publishConfig": {
@@ -191,9 +191,6 @@ describe('workspace-generator setup script', () => {
191
191
  expect(
192
192
  fs.readFileSync(path.join(workspaceDirectory, 'pnpm-workspace.yaml'), 'utf8'),
193
193
  ).toContain(' template-dependency: ^1.0.0');
194
- expect(
195
- fs.readFileSync(path.join(workspaceDirectory, 'pnpm-workspace.yaml'), 'utf8'),
196
- ).toContain(' "typescript-eslint": ^2.0.0');
197
194
  expect(fs.readFileSync(path.join(workspaceDirectory, 'pnpm-lock.yaml'), 'utf8')).toBe(
198
195
  'lock',
199
196
  );