@awesome-ecs/abstract 0.19.0 → 0.20.0
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/package.json +4 -7
- package/components.d.ts +0 -1
- package/entities.d.ts +0 -1
- package/factories.d.ts +0 -1
- package/pipelines.d.ts +0 -1
- package/systems.d.ts +0 -1
- package/utils.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awesome-ecs/abstract",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "A comprehensive Entity-Component-System (ECS) Architecture implementation. Abstract components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "npx tsup",
|
|
8
8
|
"build:clean": "npx rimraf ./dist && npm run build",
|
|
9
|
-
"typecheck": "npx attw $(npm pack)",
|
|
9
|
+
"typecheck": "npx attw $(npm pack) --ignore-rules no-resolution",
|
|
10
10
|
"ts": "tsc --noEmit --incremental",
|
|
11
11
|
"ts:watch": "tsc --noEmit --incremental --watch"
|
|
12
12
|
},
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
75
|
"files": [
|
|
76
|
-
"
|
|
76
|
+
"dist",
|
|
77
77
|
"*.d.ts",
|
|
78
78
|
"*.d.cts"
|
|
79
79
|
],
|
|
@@ -96,8 +96,5 @@
|
|
|
96
96
|
"url": "https://github.com/privatebytes/awesome-ecs/issues"
|
|
97
97
|
},
|
|
98
98
|
"homepage": "https://github.com/privatebytes/awesome-ecs#readme",
|
|
99
|
-
"
|
|
100
|
-
"rimraf": "^5.0.5"
|
|
101
|
-
},
|
|
102
|
-
"gitHead": "6517a49be2e4ace69ed3420a9f21bc9f6c62cd47"
|
|
99
|
+
"gitHead": "cc9c4924145b7f7fbbedfc6fcc00193acd3b39ec"
|
|
103
100
|
}
|
package/components.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './dist/components';
|
package/entities.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './dist/entities';
|
package/factories.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './dist/factories';
|
package/pipelines.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './dist/pipelines';
|
package/systems.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './dist/systems';
|
package/utils.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './dist/utils';
|