diff --git a/.gitignore b/.gitignore index 1c3d942..23f2865 100644 --- a/.gitignore +++ b/.gitignore @@ -80,7 +80,7 @@ typings/ # Nuxt.js build / generate output .nuxt -dist +# dist # Gatsby files .cache/ diff --git a/package.json b/package.json index 44239ff..fa11a9c 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "node": ">=10.0.0" }, "scripts": { - "build": "rollup --config", + "build": "rollup -c", "test": "jest --passWithNoTests", "lint": "eslint", "format": "prettier --check --write '{src,__tests__}/**/*.{js,ts,tsx}'", @@ -63,7 +63,8 @@ "*.ts": [ "yarn lint", "yarn format", - "yarn test" + "yarn test", + "yarn build" ] } }