Skip to content

Commit

Permalink
Merge pull request OrlandoDevs#9 from jonkurtis/package-updates
Browse files Browse the repository at this point in the history
Update npm dependencies.
  • Loading branch information
akozlik authored Feb 4, 2022
2 parents c45efc7 + d371cb8 commit 7513da9
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module.exports = function (eleventyConfig) {
// To Support .yaml Extension in _data
// You may remove this if you can use JSON
eleventyConfig.addDataExtension("yaml", (contents) =>
yaml.safeLoad(contents)
yaml.load(contents)
);

// Copy Static Files to /_Site
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16.13.2
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@
"browsersync": "browser-sync start --server '_site' --files '_site' --port 8080 --no-notify --no-open"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@tailwindcss/typography": "^0.3.1",
"alpinejs": "^3.3.3",
"browser-sync": "^2.26.14",
"cross-env": "^7.0.2",
"cssnano": "^5.0.6",
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@tailwindcss/typography": "^0.5.1",
"alpinejs": "^3.8.1",
"autoprefixer": "^10.4.2",
"browser-sync": "^2.27.7",
"cross-env": "^7.0.3",
"cssnano": "^5.0.16",
"html-minifier": "^4.0.0",
"js-yaml": "^3.14.0",
"luxon": "^1.25.0",
"js-yaml": "^4.1.0",
"luxon": "^2.3.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.1",
"prismjs": "^1.21.0",
"tailwindcss": "^2.0.2"
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"prismjs": "^1.26.0",
"tailwindcss": "^3.0.18"
},
"dependencies": {
"autoprefixer": "^10.3.4",
"browsersync": "^0.0.1-security",
"postcss": "^8.3.6",
"tailwind": "^4.0.0"
}
}
11 changes: 6 additions & 5 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const colors = require('tailwindcss/colors')

module.exports = {
purge: {
content: {
mode: "all",
content: ["./**/*.html"],
options: {
Expand All @@ -16,11 +17,11 @@ module.exports = {
},
extend: {
colors: {
blueGray: colors.blueGray,
coolGray: colors.coolGray,
warmGray: colors.warmGray,
blueGray: colors.slate,
coolGray: colors.gray,
warmGray: colors.stone,
cyan: colors.cyan,
trueGray: colors.trueGray,
trueGray: colors.neutral,
violet: colors.violet,
tPalette1: '#bfbfbf',
tPalette2: '#0b3b59',
Expand Down

0 comments on commit 7513da9

Please sign in to comment.