We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 021dbd2 commit 1266698Copy full SHA for 1266698
.gitignore
@@ -45,8 +45,9 @@ node_modules/
45
!.yarn/sdks
46
!.yarn/versions
47
48
-# Compile output
+# Compile and pack output
49
dist/
50
+*.tgz
51
52
# VS Code
53
.vscode/
package.json
@@ -38,6 +38,16 @@
38
"default": "./dist/index.cjs"
39
},
40
"sideEffects": false,
41
+ "scripts": {
42
+ "fix": "eslint --cache --fix .",
43
+ "format": "prettier --cache --write .",
44
+ "lint": "yarn dedupe --check && eslint --cache . && prettier --cache --check .",
+ "build": "tsc",
+ "clean": "rm -rf dist",
+ "prepublish": "yarn run lint",
+ "prepack": "yarn run build",
+ "postpack": "yarn run clean"
+ },
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0"
0 commit comments