@postxl/generator 1.0.1 → 1.0.3

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.
@@ -32,5 +32,5 @@ function toDependency_Package(dependency) {
32
32
  if ('version' in dependency) {
33
33
  return dependency;
34
34
  }
35
- return { packageName: dependency.packageName, version: 'workspace:*' };
35
+ return { packageName: dependency.packageName, version: 'workspace:^' };
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@postxl/generator",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Core package that orchestrates the code generation of a PXL project",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -32,15 +32,6 @@
32
32
  "files": [
33
33
  "dist"
34
34
  ],
35
- "scripts": {
36
- "build": "tsc -b tsconfig.build.json",
37
- "lint": "eslint .",
38
- "prettier:check": "prettier --check \"**/*.{ts,tsx}\" --config ../../prettier.config.js --ignore-path ../../.prettierignore",
39
- "test:jest": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
40
- "test:coverage": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --coverage",
41
- "test:watch": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --watch",
42
- "test:types": "tsc --noEmit"
43
- },
44
35
  "repository": {
45
36
  "type": "git",
46
37
  "url": "https://github.com/postxl/pxl",
@@ -48,14 +39,13 @@
48
39
  },
49
40
  "dependencies": {
50
41
  "@eslint/js": "9.10.0",
51
- "@postxl/schema": "workspace:*",
52
42
  "diff": "7.0.0",
53
- "fast-glob": "3.2.12",
54
43
  "globals": "15.12.0",
55
44
  "isbinaryfile": "5.0.4",
56
45
  "jszip": "3.10.1",
57
46
  "minimatch": "^10.0.1",
58
- "p-limit": "3.1.0"
47
+ "p-limit": "3.1.0",
48
+ "@postxl/schema": "^1.0.0"
59
49
  },
60
50
  "devDependencies": {
61
51
  "@types/diff": "5.2.2",
@@ -68,5 +58,14 @@
68
58
  "runner": "--experimental-vm-modules"
69
59
  }
70
60
  }
61
+ },
62
+ "scripts": {
63
+ "build": "tsc -b tsconfig.build.json",
64
+ "lint": "eslint .",
65
+ "prettier:check": "prettier --check \"**/*.{ts,tsx}\" --config ../../prettier.config.js --ignore-path ../../.prettierignore",
66
+ "test:jest": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
67
+ "test:coverage": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --coverage",
68
+ "test:watch": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --watch",
69
+ "test:types": "tsc --noEmit"
71
70
  }
72
- }
71
+ }