Skip to content

Commit

Permalink
Merge pull request #694 from iamvishnusankar/fix/cjs-export
Browse files Browse the repository at this point in the history
[Fix] Missing dist/cjs directory
  • Loading branch information
iamvishnusankar committed Aug 9, 2023
2 parents a0c5c52 + e7dd5fb commit 33bafdc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
Binary file modified .yarn/install-state.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"clean": "tsc --build --clean",
"dev:test": "jest --watchAll",
"dev:tsc": "tsc --build --watch",
"build": "turbo run build --force",
"build": "turbo run deploy --force",
"test": "jest --ci --coverage --verbose",
"lint": "eslint . && yarn prettier:check",
"prettier:check": "prettier --check \"**/*.{js,mjs,cjs,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,less,graphql,graphqls,gql}\"",
Expand Down
13 changes: 13 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
},
"postbuild": {
"dependsOn": ["^postbuild"],
"outputs": [
"dist/**",
".next/**",
"public/robots.txt",
"public/sitemap*.xml"
]
},
"deploy": {
"dependsOn": ["build", "postbuild"],
"outputs": []
},
"lint": {
"outputs": []
},
Expand Down

0 comments on commit 33bafdc

Please sign in to comment.