From 98e437ead2134e2ba131eae66d4f115185087de6 Mon Sep 17 00:00:00 2001 From: Alex Rodin Date: Mon, 16 Dec 2019 12:17:46 -0300 Subject: [PATCH] =?UTF-8?q?Publica=C3=A7=C3=A3o=20da=20vers=C3=A3o=20v0.5.?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 154 ++++++++++++++++++++-------------------- test/ECS.test.d.ts | 1 + test/Iterator.test.d.ts | 1 + tsconfig.json | 3 +- 4 files changed, 81 insertions(+), 78 deletions(-) create mode 100644 test/ECS.test.d.ts create mode 100644 test/Iterator.test.d.ts diff --git a/package.json b/package.json index 5bbe5eb..be825e0 100644 --- a/package.json +++ b/package.json @@ -1,80 +1,80 @@ { - "name": "ecs-lib", - "version": "0.4.0", - "description": "Tiny and easy to use ECS (Entity Component System) library for game programming and much more", - "main": "index.js", - "scripts": { - "test": "nyc mocha", - "coverage": "nyc report --reporter=text-lcov | coveralls", - "build": "npm run-script build-ts && npm run-script build-js", - "build-js": "browserify src/index.ts -p [ tsify --emitDeclarationOnly=false ] -s ecs-lib > index.js", - "build-ts": "tsc -p tsconfig.json", - "publish-lib": "node v-release.js && node publish.js", - "publish-lib-snapshot": "node v-snapshot.js && node publish.js" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/nidorx/ecs-lib.git" - }, - "author": "Alex Rodin ", - "license": "MIT", - "bugs": { - "url": "https://github.com/nidorx/ecs-lib/issues" - }, - "homepage": "https://github.com/nidorx/ecs-lib#readme", - "devDependencies": { - "@istanbuljs/nyc-config-typescript": "0.1.3", - "@types/chai": "4.2.7", - "@types/mocha": "5.2.7", - "@types/node": "12.12.17", - "browserify": "16.5.0", - "chai": "4.2.0", - "coveralls": "3.0.9", - "mocha": "6.2.2", - "nyc": "14.1.1", - "semver": "6.3.0", - "source-map-support": "0.5.16", - "ts-node": "8.5.4", - "tsify": "4.0.1", - "typescript": "3.7.3" - }, - "files": [ - "index.js", - "index.d.ts", - "LICENSE", - "README.md" - ], - "keywords": [ - "ecs", - "ecs-framework", - "entity-component", - "entity-component-system", - "entity", - "game", - "game-engine", - "gamedev", - "game-development", - "game-ecs", - "gameloop", - "threejs" - ], - "nyc": { - "extension": [ - ".ts", - ".tsx" + "name": "ecs-lib", + "version": "0.5.0", + "description": "Tiny and easy to use ECS (Entity Component System) library for game programming and much more", + "main": "index.js", + "scripts": { + "test": "nyc mocha", + "coverage": "nyc report --reporter=text-lcov | coveralls", + "build": "npm run-script build-ts && npm run-script build-js", + "build-js": "browserify src/index.ts -p [ tsify --emitDeclarationOnly=false ] -s ecs-lib > index.js", + "build-ts": "tsc -p tsconfig.json", + "publish-lib": "node v-release.js && node publish.js", + "publish-lib-snapshot": "node v-snapshot.js && node publish.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/nidorx/ecs-lib.git" + }, + "author": "Alex Rodin ", + "license": "MIT", + "bugs": { + "url": "https://github.com/nidorx/ecs-lib/issues" + }, + "homepage": "https://github.com/nidorx/ecs-lib#readme", + "devDependencies": { + "@istanbuljs/nyc-config-typescript": "0.1.3", + "@types/chai": "4.2.7", + "@types/mocha": "5.2.7", + "@types/node": "12.12.17", + "browserify": "16.5.0", + "chai": "4.2.0", + "coveralls": "3.0.9", + "mocha": "6.2.2", + "nyc": "14.1.1", + "semver": "6.3.0", + "source-map-support": "0.5.16", + "ts-node": "8.5.4", + "tsify": "4.0.1", + "typescript": "3.7.3" + }, + "files": [ + "index.js", + "index.d.ts", + "LICENSE", + "README.md" ], - "exclude": [ - "*.*", - "**/*.d.ts", - "example/**/*.*", - "coverage/**/*.*", - "test/**/*.*" + "keywords": [ + "ecs", + "ecs-framework", + "entity-component", + "entity-component-system", + "entity", + "game", + "game-engine", + "gamedev", + "game-development", + "game-ecs", + "gameloop", + "threejs" ], - "reporter": [ - "html", - "lcov", - "text-summary" - ], - "all": true - } -} + "nyc": { + "extension": [ + ".ts", + ".tsx" + ], + "exclude": [ + "*.*", + "**/*.d.ts", + "example/**/*.*", + "coverage/**/*.*", + "test/**/*.*" + ], + "reporter": [ + "html", + "lcov", + "text-summary" + ], + "all": true + } +} \ No newline at end of file diff --git a/test/ECS.test.d.ts b/test/ECS.test.d.ts new file mode 100644 index 0000000..cb0ff5c --- /dev/null +++ b/test/ECS.test.d.ts @@ -0,0 +1 @@ +export {}; diff --git a/test/Iterator.test.d.ts b/test/Iterator.test.d.ts new file mode 100644 index 0000000..cb0ff5c --- /dev/null +++ b/test/Iterator.test.d.ts @@ -0,0 +1 @@ +export {}; diff --git a/tsconfig.json b/tsconfig.json index d7a7a94..119a6b6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -30,6 +30,7 @@ "exclude": [ "node_modules", "dist", - "example" + "example", + "test" ] }