Skip to content

Commit

Permalink
Merge pull request #117 from mcliff1/mcliff1-patch-1
Browse files Browse the repository at this point in the history
Mcliff1 patch 1
  • Loading branch information
mcliff1 authored Nov 9, 2024
2 parents 04658be + e4d9dc3 commit 373a07a
Show file tree
Hide file tree
Showing 9 changed files with 9,011 additions and 5,644 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Cliff Consulting Dev Container",
"image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:0-14",
"image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:18",
"runArgs": ["--privileged"],
"postCreateCommand": "npm install",
"customizations": {
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/s3-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down Expand Up @@ -68,6 +68,7 @@ jobs:

- name: Build And Deploy
run: |
nodejs -v
ACCOUNT_NAME=$(aws ssm get-parameter --name /foundation/account/name --query 'Parameter.Value' --output text)
echo $ACCOUNT_NAME
BUCKET=$(aws ssm get-parameter --name /app/cdn/${ACCOUNT_NAME}-cliffconsulting/bucket --query 'Parameter.Value' --output text)
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

This repository supports the [cliffconsulting.com](https://cliffconsulting.com/) web site. This is a serverless site to support Matt Cliff's career and freelance work.


Ref: https://github.com/devcontainers/images/tree/main/src/javascript-node

(12/21/19) make a new s3-cfn-dns stack that I can separate from the base; the base will make the pipeline for a given environment.

We will have a pipeline with 1 source (this Git);
Expand Down
35 changes: 35 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
const react = require('eslint-plugin-react');
const globals = require('globals');

module.exports = [
{
files: ["**/*.js", "**/*.jsx"],
languageOptions: {
ecmaVersion: 2021,
sourceType: "module",
parser: require("@typescript-eslint/parser"),
parserOptions: {
requireConfigFile: false,
ecmaFeatures: {
jsx: true
}
},
"globals": {
browser: true,
es2021: true
}
},
plugins: {
react: require("eslint-plugin-react"),
"@typescript-eslint": require("@typescript-eslint/eslint-plugin")
},
settings: {
react: {
version: "18.0"
}
},
rules: {
// Your custom rules
}
}
];
12 changes: 12 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import pluginReact from "eslint-plugin-react";


/** @type {import('eslint').Linter.Config[]} */
export default [
{files: ["**/*.{js,mjs,cjs,jsx}"]},
{languageOptions: { globals: globals.browser }},
pluginJs.configs.recommended,
pluginReact.configs.flat.recommended,
];
Loading

0 comments on commit 373a07a

Please sign in to comment.