Skip to content

Commit

Permalink
fix: various things for CI and more
Browse files Browse the repository at this point in the history
  • Loading branch information
alitnk committed Oct 12, 2023
1 parent f75742f commit 27d64d4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions apps/site/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import starlight from '@astrojs/starlight';

// https://astro.build/config
export default defineConfig({
// for Astro CI action to pick up
outDir: '../../dist',
site: 'https://monopay.js.org',
base: '/',
redirects: {
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"packages/*"
],
"scripts": {
"build": "FORCE_COLOR=1 turbo run build",
"lint": "FORCE_COLOR=1 turbo run lint",
"test": "FORCE_COLOR=1 turbo run test",
"test:cov": "FORCE_COLOR=1 turbo run test:cov",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"test:cov": "turbo run test:cov",
"format": "prettier --write \"**/*.{ts,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
Expand Down
2 changes: 1 addition & 1 deletion packages/monopay/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "monopay",
"version": "1.2.1",
"description": "A node.js package for making payment transactions with different Iranian IPGs",
"description": "A package for making payment transactions with different Iranian IPGs using JS/TS",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
4 changes: 3 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"test": {},
"test:cov": {},
"lint": {},
"build": {}
"build": {
"cache": false
}
}
}

0 comments on commit 27d64d4

Please sign in to comment.