Skip to content

Commit

Permalink
updatind deps
Browse files Browse the repository at this point in the history
  • Loading branch information
woodcox authored Jan 10, 2024
1 parent 766bc63 commit 5e70ebb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/11tybuild-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build 11ty and css
on:
push:
branches:
- main
- update-1

# Cancel a previous build if still running
concurrency:
Expand All @@ -11,7 +11,7 @@ concurrency:

# Conditional environmental if's
env:
UPDATE_NPM: false # false = deploy eleventy , true = update npm
UPDATE_NPM: true # false = deploy eleventy , true = update npm

jobs:
build_deploy_eleventy:
Expand Down
2 changes: 1 addition & 1 deletion config/build/esbuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const defineEnv = {
};

const esbuildOpts = {
entryPoints: ['src/scripts/jsx/app.jsx', 'src/scripts/js/*.js', 'dist/app/*.css']), // include css so that its in the manifest.json
entryPoints: ['src/scripts/jsx/*.jsx', 'src/scripts/js/*.js', 'dist/app/*.css']), // include css so that its in the manifest.json
entryNames: isProd ? '[name]-[hash]' : '[name]',
outExtension: isProd ? {'.js': '.min.js', '.css': '.min.css'} : {'.js': '.js', '.css': '.css'},
allowOverwrite: !isProd, // overwrite dist/app/style.css when in dev mode
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-webc": "^0.9.4",
"@11ty/is-land": "^3.0.2",
"@hyrious/esbuild-plugin-http": "^0.1.2",
"concurrently": "^7.6.0",
"esbuild": "^0.17.19",
"esbuild-plugin-manifest": "^0.5.0",
"@11ty/eleventy-plugin-webc": "^0.11.2",
"@11ty/is-land": "^4.0.0",
"@hyrious/esbuild-plugin-http": "^0.1.5",
"@luncheon/esbuild-plugin-gzip": "^0.1.0",
"concurrently": "^8.2.2",
"esbuild": "^0.19.10",
"esbuild-plugin-manifest": "^1.0.2",
"esbuild-plugin-purgecss-2": "^1.0.1",
"esbuild-plugin-solid": "^0.5.0",
"glob-all": "^3.3.1",
"lightningcss-cli": "^1.21.1",
"purgecss": "^5.0.0",
"sass": "^1.63.6",
"solid-js": "^1.7.7"
"sass": "^1.69.5",
"solid-js": "^1.8.7"
},
"browserslist": [
"> 0.2%",
Expand Down

0 comments on commit 5e70ebb

Please sign in to comment.