Skip to content

Commit a18ecc9

Browse files
merge: pull request #266 from configuration.
Configuration
2 parents 6b7c2ce + 02ab457 commit a18ecc9

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

package.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@grnsft/if",
33
"description": "Impact Framework",
4-
"version": "v0.0.7",
4+
"version": "v0.1.0",
55
"author": {
66
"name": "Green Software Foundation",
77
"email": "info@gsf.com"
@@ -35,7 +35,14 @@
3535
"yarn": "1.22.19"
3636
},
3737
"homepage": "https://greensoftware.foundation",
38-
"keywords": [],
38+
"keywords": [
39+
"engine",
40+
"green software foundation",
41+
"greensoftware",
42+
"if",
43+
"impact",
44+
"models"
45+
],
3946
"license": "MIT",
4047
"main": "build/index.js",
4148
"publishConfig": {
@@ -45,13 +52,13 @@
4552
"url": "https://github.com/Green-Software-Foundation/if"
4653
},
4754
"scripts": {
48-
"build": "tsc",
55+
"build": "rm -rf build && tsc --project tsconfig.build.json",
4956
"coverage": "jest --verbose --coverage",
5057
"fix": "gts fix",
5158
"fix:package": "fixpack",
5259
"impact-engine": "npx ts-node src/index.ts",
5360
"lint": "gts lint",
54-
"prepare": "yarn build",
61+
"prepublish": "yarn build",
5562
"test": "jest --verbose"
5663
},
5764
"stability": "stable",

tsconfig.build.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"exclude": [
4+
"src/__tests__",
5+
"src/__mocks__"
6+
]
7+
}

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"stripInternal": false,
2929
"target": "ES2020",
3030
"composite": false,
31-
"tsBuildInfoFile": "tsconfig.tsbuildinfo"
3231
},
3332
"include": [
3433
"src/**/*.ts"

0 commit comments

Comments
 (0)