@notask/unity-cli-tools 1.0.0 → 1.0.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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.0.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.0...1.0.1) (2025-04-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **Build:** outputting correct output folder ([8c20b2c](https://github.com/NoTaskStudios/unity-cli-tools/commit/8c20b2c6db2ff83fc37e88ce8e95fc3fce816418))
7
+
1
8
  # 1.0.0 (2025-04-22)
2
9
 
3
10
 
package/README.md CHANGED
@@ -5,7 +5,7 @@ A TypeScript library for programmatically interacting with Unity Hub and Unity E
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install unity-cli-tools
8
+ npm install @notask/unity-cli-tools
9
9
  ```
10
10
 
11
11
  ## Dual Module Support
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@notask/unity-cli-tools",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "main": "dist-cjs/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/.nvmrc DELETED
Binary file
package/.prettierrc DELETED
@@ -1,8 +0,0 @@
1
- {
2
- "semi": true,
3
- "trailingComma": "es5",
4
- "singleQuote": false,
5
- "printWidth": 120,
6
- "tabWidth": 2,
7
- "endOfLine": "lf"
8
- }
package/dist-cjs.zip DELETED
Binary file
package/dist-esm.zip DELETED
Binary file
package/eslint.config.js DELETED
@@ -1,60 +0,0 @@
1
- import js from "@eslint/js";
2
- import tseslint from "typescript-eslint";
3
- import { defineConfig } from "eslint/config";
4
-
5
- export default defineConfig([
6
- {
7
- files: ["**/*.{js,mjs,cjs,ts}"],
8
- plugins: { js },
9
- extends: ["js/recommended"],
10
- },
11
- {
12
- files: ["**/*.{js,mjs,cjs,ts}"],
13
- },
14
- ...tseslint.configs.recommended,
15
- {
16
- files: ["**/*.ts"],
17
- languageOptions: {
18
- parser: tseslint.parser,
19
- parserOptions: {
20
- project: "./tsconfig.json",
21
- },
22
- },
23
- plugins: {
24
- "@typescript-eslint": tseslint.plugin,
25
- },
26
- rules: {
27
- // Disable JS rule and enable TS equivalent
28
- "no-unused-vars": "off",
29
- "@typescript-eslint/no-unused-vars": "warn",
30
-
31
- // Typed linting rules
32
- "@typescript-eslint/explicit-function-return-type": "error",
33
- "@typescript-eslint/no-explicit-any": "off",
34
- "@typescript-eslint/strict-boolean-expressions": "off",
35
- "@typescript-eslint/no-floating-promises": "error",
36
- "@typescript-eslint/prefer-nullish-coalescing": "error",
37
- "@typescript-eslint/prefer-optional-chain": "error",
38
- "@typescript-eslint/no-unnecessary-type-assertion": "error",
39
- "@typescript-eslint/no-unnecessary-condition": "warn",
40
- "@typescript-eslint/prefer-ts-expect-error": "error",
41
- "@typescript-eslint/ban-ts-comment": ["error", { "ts-expect-error": "allow-with-description" }],
42
-
43
- // Code style
44
- "@typescript-eslint/consistent-type-definitions": ["error", "interface"],
45
- "@typescript-eslint/consistent-type-assertions": "error",
46
- "@typescript-eslint/explicit-member-accessibility": ["error", { accessibility: "explicit" }],
47
- "@typescript-eslint/no-non-null-assertion": "error",
48
- },
49
- },
50
- {
51
- files: ["eslint.config.js"],
52
- rules: {
53
- "@typescript-eslint/explicit-function-return-type": "off",
54
- "@typescript-eslint/strict-boolean-expressions": "off",
55
- },
56
- },
57
- {
58
- ignores: ["node_modules", "dist", "dist-cjs", "**/*.cjs"],
59
- },
60
- ]);
@@ -1,9 +0,0 @@
1
- #!/usr/bin/env node
2
- const fs = require("fs");
3
- const path = require("path");
4
-
5
- const outDir = path.resolve(__dirname, "..", "dist-cjs");
6
- fs.mkdirSync(outDir, { recursive: true });
7
-
8
- const pkg = { type: "commonjs" };
9
- fs.writeFileSync(path.join(outDir, "package.json"), JSON.stringify(pkg, null, 2) + "\n");
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes