Skip to content

Commit

Permalink
restored build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ravid7000 committed Jan 22, 2022
1 parent f863a59 commit a6aba82
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "svelte-dispatchable",
"version": "0.0.3",
"main": "./dispatchable.js",
"types": "./dispatchable.d.ts",
"main": "./build/dispatchable.js",
"types": "./build/dispatchable.d.ts",
"license": "MIT",
"files": [
"build"
Expand Down Expand Up @@ -32,9 +32,9 @@
"scripts": {
"clean": "rm -rf build",
"compress": "uglifyjs ./build/dispatchable.js -o ./build/dispatchable.js -c -m",
"build:types": "tsc src/dispatchable.ts --declaration --emitDeclarationOnly --outDir ./",
"build:types": "tsc src/dispatchable.ts --declaration --emitDeclarationOnly --outDir build",
"prebuild": "yarn clean && yarn build:types",
"build": "tsc src/dispatchable.ts --outDir ./ && yarn compress",
"build": "tsc src/dispatchable.ts --outDir build && yarn compress",
"test:watch": "jest --watchAll",
"test": "jest",
"prepublishOnly": "yarn test && yarn build"
Expand Down

0 comments on commit a6aba82

Please sign in to comment.