Skip to content
This repository was archived by the owner on Jun 28, 2022. It is now read-only.

Commit

Permalink
fix: website deploy configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
arantespp committed Sep 28, 2021
1 parent 0b266c4 commit b46c373
Show file tree
Hide file tree
Showing 11 changed files with 2,037 additions and 31 deletions.
695 changes: 674 additions & 21 deletions LICENSE

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions cicd/commands/main
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

set -e

yarn lerna run "build" --stream --parallel
yarn lerna run "test" --stream --parallel
yarn lerna run "build" --stream
yarn lerna run "test" --stream
yarn lerna version --yes
4 changes: 2 additions & 2 deletions cicd/commands/pr
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

set -e

yarn lerna run "build" --stream --parallel
yarn lerna run "test" --stream --parallel
yarn lerna run "build" --stream
yarn lerna run "test" --stream
6 changes: 3 additions & 3 deletions cicd/commands/tag
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

set -e

yarn lerna run "build" --stream --parallel
yarn lerna run "test" --stream --parallel
yarn lerna run "deploy" --stream --parallel
yarn lerna run "build" --stream
yarn lerna run "test" --stream
yarn lerna run "deploy" --stream
3 changes: 3 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
"conventionalCommits": true,
"message": "chore: publish new version"
},
"run": {
"stream": true
},
"version": {
"forcePublish": true
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"name": "Pedro Arantes",
"url": "https://twitter.com/arantespp"
},
"license": "MIT",
"license": "GPL-3.0",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
Expand Down
674 changes: 674 additions & 0 deletions packages/cli/LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"name": "Pedro Arantes",
"url": "https://twitter.com/arantespp"
},
"license": "MIT",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ttoss/carlin/issues"
},
Expand Down
674 changes: 674 additions & 0 deletions packages/website/LICENSE

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion packages/website/carlin.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
skipDeploy: true
environments:
Production:
skipDeploy: false
aliases:
- carlin.ttoss.dev
csp:
default-src: ["* 'unsafe-inline' 'unsafe-eval'", replace]
cloudfront: true
skipDeploy: false
stackName: CarlinWebsite
1 change: 1 addition & 0 deletions packages/website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "carlin-website",
"version": "0.19.7",
"license": "GPL-3.0",
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
Expand Down

0 comments on commit b46c373

Please sign in to comment.