We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 347dc1b commit 5198bf1Copy full SHA for 5198bf1
.gitignore
@@ -4,3 +4,4 @@ dist
4
.cache
5
coverage
6
yarn-error.log
7
+.DS_Store
package.json
@@ -1,15 +1,16 @@
1
{
2
"name": "eth95",
3
- "version": "0.1.0",
+ "version": "0.1.1",
"bin": {
"eth95": "./dist/index.js"
},
+ "files": ["/dist"],
8
"license": "MIT",
9
"scripts": {
10
"start": "ts-node src/index.ts",
11
"build": "rm -rf dist && yarn tsc && yarn bundle",
12
"tsc": "tsc -p . && tsc -p ./src/app",
- "bundle": "parcel build src/app/index.html -d dist/app",
13
+ "bundle": "parcel build src/app/index.html -d dist/app --no-source-maps",
14
"test": "jest",
15
"test:ci": "jest --runInBand",
16
"prepublish": "yarn build"
0 commit comments