Skip to content

Commit

Permalink
fix, package
Browse files Browse the repository at this point in the history
  • Loading branch information
sovrin committed Nov 25, 2021
1 parent 8e05e65 commit e4249bf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -6,4 +6,4 @@
/temp

package-lock.json

*.tgz
10 changes: 6 additions & 4 deletions package.json
@@ -1,17 +1,19 @@
{
"name": "nean",
"version": "2.0.3",
"version": "2.0.4",
"description": "small kit for porting css frameworks to reactjs",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "mocha -r ts-node/register/transpile-only --full-trace 'test/**/*.ts'",
"coverage": "nyc npm test"
},
"files": [
"dist"
"dist",
"types"
],
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Expand Up @@ -10,7 +10,6 @@
"outDir": "./dist",
"baseUrl": "./src",
"declaration": true,
"declarationDir": "./dist/types"
},
"exclude": [
"test/**"
Expand Down

0 comments on commit e4249bf

Please sign in to comment.