create-mcbepack 1.0.0 → 1.0.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.
@@ -75,13 +75,13 @@ export function generateFileList(config) {
75
75
  path: path.join(projectRoot, ".env.local"),
76
76
  content: "",
77
77
  type: "copy",
78
- source: path.join(templatesDir, ".env.local"),
78
+ source: path.join(templatesDir, ".env.local.txt"),
79
79
  });
80
80
  files.push({
81
81
  path: path.join(projectRoot, ".gitignore"),
82
82
  content: "",
83
83
  type: "copy",
84
- source: path.join(templatesDir, ".gitignore"),
84
+ source: path.join(templatesDir, ".gitignore.txt"),
85
85
  });
86
86
  const packageJson = {
87
87
  name: config.name,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mcbepack",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "main": "out/index.js",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -0,0 +1,3 @@
1
+ BASE_PATH="C:\Users\YourName\AppData\Roaming\Minecraft Bedrock\Users\Shared\games\com.mojang"
2
+ RESOURCE_PATH="development_resource_packs"
3
+ BEHAVIOR_PATH="development_behavior_packs"
@@ -0,0 +1,34 @@
1
+ # dependencies (bun install)
2
+ node_modules
3
+
4
+ # output
5
+ out
6
+ dist
7
+ *.tgz
8
+
9
+ # code coverage
10
+ coverage
11
+ *.lcov
12
+
13
+ # logs
14
+ logs
15
+ _.log
16
+ report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
17
+
18
+ # dotenv environment variable files
19
+ .env
20
+ .env.development.local
21
+ .env.test.local
22
+ .env.production.local
23
+ .env.local
24
+
25
+ # caches
26
+ .eslintcache
27
+ .cache
28
+ *.tsbuildinfo
29
+
30
+ # IntelliJ based IDEs
31
+ .idea
32
+
33
+ # Finder (MacOS) folder config
34
+ .DS_Store
@@ -0,0 +1,16 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ESNext",
4
+ "moduleResolution": "bundler",
5
+ "module": "ESNext",
6
+ "resolvePackageJsonImports": true,
7
+ "sourceMap": false
8
+ },
9
+ "exclude": [
10
+ "node_modules",
11
+ "src"
12
+ ],
13
+ "include": [
14
+ "scripts/**/*"
15
+ ]
16
+ }