Skip to content

Commit

Permalink
chore: release 0.0.1
Browse files Browse the repository at this point in the history
Release-As: 0.0.1
  • Loading branch information
allan-mobley-jr authored Nov 19, 2022
1 parent 52e1156 commit 266ac93
Show file tree
Hide file tree
Showing 11 changed files with 141 additions and 2 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Automates CHANGELOG generation, the creation of GitHub releases, and version bumps for specified project.

on:
push:
branches:
- main
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
default-branch: main
path: .
release-type: node
package-name: '@cart180/website'
monorepo-tags: true
bump-minor-pre-major: true
bump-patch-for-minor-pre-major: true
prerelease: false
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
.pnp
.pnp.js

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

package-lock.json
Empty file added .nojekyll
Empty file.
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cart180.com
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# cart180.website
The marketing website for cart180.
# <img align="center" src="./logo.png" width="96" height="96" /> The Marketing Website for cart180

#### **_Copyright (c) cart180. All rights reserved._**
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = { extends: ["@commitlint/config-conventional"] };
Binary file added favicon.ico
Binary file not shown.
3 changes: 3 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body {
background-color: mintcream;
}
39 changes: 39 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cart180</title>
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<main>
<div class="px-4 py-5 my-5 text-center">
<img
class="d-block mx-auto mb-4"
src="./logo.png"
alt=""
width="96"
height="96"
/>
<h1 class="display-5 fw-bold">cart180</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">
Coming Soon.
</p>
</div>
</div>
</main>
</body>
</html>
Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 55 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"name": "@cart180/website",
"version": "0.0.0",
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix"
},
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"prettier": "2.7.1"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier",
"plugin:prettier/recommended"
],
"ignorePatterns": ["node_modules", ".*"],
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"bracketSpacing": true,
"arrowParens": "avoid",
"proseWrap": "never",
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "ignore"
}
]
},
"env": {
"browser": true,
"es2022": true
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"!.*": ["eslint . --fix"]
}
}

0 comments on commit 266ac93

Please sign in to comment.