Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Commit d4da3e4

Browse files
committed
Made package smaller
1 parent 59a326e commit d4da3e4

File tree

3 files changed

+20
-11
lines changed

3 files changed

+20
-11
lines changed

.npmignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Agile Framework `1.1`
1+
# Agile Framework `1.0.2`
22

33
_Agile is a global state and logic framework for reactive Typescript & Javascript applications. Supporting frameworks like React and React Native._
44

package.json

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,27 @@
11
{
2-
"name": "agile-framework",
3-
"version": "1.0.0",
2+
"name": "agile-architecture",
3+
"version": "1.0.2",
44
"description": "Global state and logic framework for reactive React applications.",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
7+
"types": "./dist/index.d.ts",
78
"scripts": {
89
"build": "tsc",
910
"dev": "tsc-watch",
1011
"test": "mocha -r ts-node/register --exit test/**/*.spec.ts",
11-
12-
"prepare" : "npm run build",
13-
"prepublishOnly" : "npm test",
14-
"version" : "npm run format && git add -A src",
15-
"postversion" : "git push && git push --tags"
12+
"prepare": "npm run build",
13+
"prepublishOnly": "npm test",
14+
"version": "npm run format && git add -A src",
15+
"postversion": "git push && git push --tags"
1616
},
17-
"types": "./dist/index.d.ts",
17+
"repository": {
18+
"type": "git",
19+
"url": "git+https://github.com/agile-architecture/agile.git"
20+
},
21+
"keywords": [
22+
"React",
23+
"State-Management"
24+
],
1825
"author": "BennoDev",
1926
"license": "ISC",
2027
"dependencies": {
@@ -29,5 +36,8 @@
2936
"tsc-watch": "^4.1.0",
3037
"tslib": "^2.0.0",
3138
"typescript": "^3.9.7"
32-
}
39+
},
40+
"files": [
41+
"dist/**/*"
42+
]
3343
}

0 commit comments

Comments
 (0)