monorepolint 0.5.0-alpha.98 → 0.5.0-beta.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,29 @@
1
+ # monorepolint
2
+
3
+ ## 0.5.0-beta.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2fdcfcb: Attempt to publish releases to github automatically
8
+ - @monorepolint/cli@0.5.0-beta.1
9
+ - @monorepolint/config@0.5.0-beta.1
10
+ - @monorepolint/core@0.5.0-beta.1
11
+ - @monorepolint/internal-mrl-config@0.5.0-beta.1
12
+ - @monorepolint/rules@0.5.0-beta.1
13
+ - @monorepolint/utils@0.5.0-beta.1
14
+
15
+ ## 0.5.0-beta.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 45fb496: I failed to take good notes over the last few years. Sorry.
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [45fb496]
24
+ - @monorepolint/cli@0.5.0-beta.0
25
+ - @monorepolint/config@0.5.0-beta.0
26
+ - @monorepolint/core@0.5.0-beta.0
27
+ - @monorepolint/internal-mrl-config@0.5.0-beta.0
28
+ - @monorepolint/rules@0.5.0-beta.0
29
+ - @monorepolint/utils@0.5.0-beta.0
package/package.json CHANGED
@@ -1,25 +1,44 @@
1
1
  {
2
2
  "name": "monorepolint",
3
- "version": "0.5.0-alpha.98+32ec612",
3
+ "version": "0.5.0-beta.1",
4
4
  "license": "MIT",
5
- "scripts": {
6
- "clean": "rm -rf build lib node_modules *.tgz tsconfig.tsbuildinfo",
7
- "compile:typescript": "../../node_modules/.bin/tsc",
8
- "jest": "../../node_modules/.bin/jest --config ../../jest.config.js",
9
- "jest:watch": "../../node_modules/.bin/jest --config ../../jest.config.js --watch",
10
- "lint": "../../node_modules/.bin/tslint --config ../../tslint.json --project .",
11
- "lint:typescript": "../../node_modules/.bin/tslint --config ../../tslint.json --project .",
12
- "test": "../../node_modules/.bin/jest --colors --passWithNoTests",
13
- "test:watch": "../../node_modules/.bin/jest --colors --passWithNoTests --watch"
5
+ "exports": {
6
+ ".": {
7
+ "types": "./build/types/index.d.ts",
8
+ "import": "./build/js/index.js"
9
+ },
10
+ "./*": {
11
+ "types": "./build/types/public/*.d.ts",
12
+ "import": "./build/js/public/*.js"
13
+ }
14
+ },
15
+ "engines": {
16
+ "node": ">=18"
14
17
  },
15
18
  "dependencies": {
16
- "@monorepolint/cli": "^0.5.0-alpha.98+32ec612",
17
- "@monorepolint/core": "^0.5.0-alpha.98+32ec612",
18
- "@monorepolint/rules": "^0.5.0-alpha.98+32ec612",
19
- "@monorepolint/utils": "^0.5.0-alpha.98+32ec612"
19
+ "@monorepolint/cli": "^0.5.0-beta.1",
20
+ "@monorepolint/core": "^0.5.0-beta.1",
21
+ "@monorepolint/config": "^0.5.0-beta.1",
22
+ "@monorepolint/internal-mrl-config": "0.5.0-beta.1",
23
+ "@monorepolint/rules": "^0.5.0-beta.1",
24
+ "@monorepolint/utils": "^0.5.0-beta.1"
25
+ },
26
+ "devDependencies": {
27
+ "@jest/globals": "^29.7.0",
28
+ "@types/jest": "^29.5.12",
29
+ "@typescript-eslint/eslint-plugin": "^7.7.1",
30
+ "@typescript-eslint/parser": "^7.7.1",
31
+ "eslint": "^9.1.1",
32
+ "jest": "^29.7.0",
33
+ "prettier": "^3.2.5",
34
+ "ts-jest": "^29.1.2",
35
+ "tslib": "^2.6.2",
36
+ "tsup": "^8.0.2",
37
+ "typescript": "^5.4.5"
20
38
  },
21
39
  "publishConfig": {
22
40
  "access": "public"
23
41
  },
24
- "gitHead": "32ec6128225ca7b5462bb02375b2d9b03c1d7c3a"
25
- }
42
+ "gitHead": "74320e31cfce7555aece7a98d71d01d2f329be0f",
43
+ "scripts": {}
44
+ }
package/tsconfig.json CHANGED
@@ -1,16 +1,27 @@
1
1
  {
2
2
  "extends": "../../tsconfig.base.json",
3
3
  "compilerOptions": {
4
- "outDir": "./lib",
5
- "rootDir": "./src"
4
+ "outDir": "./build/js",
5
+ "rootDir": "./src",
6
+ "declarationDir": "./build/types",
7
+ "tsBuildInfoFile": "./build/tsconfig.tsbuildinfo"
6
8
  },
9
+ "include": [
10
+ "src"
11
+ ],
7
12
  "references": [
8
13
  {
9
14
  "path": "../cli"
10
15
  },
16
+ {
17
+ "path": "../config"
18
+ },
11
19
  {
12
20
  "path": "../core"
13
21
  },
22
+ {
23
+ "path": "../internal-mrl-config"
24
+ },
14
25
  {
15
26
  "path": "../rules"
16
27
  },
File without changes