From 74d20992804d209678fad2030d2c65a9f83900f7 Mon Sep 17 00:00:00 2001 From: Ludovic Janot Date: Thu, 7 Jul 2022 15:02:56 +0200 Subject: [PATCH 1/2] Add @studiometa/ui source files to tailwind.config.js --- template/tailwind.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/template/tailwind.config.js b/template/tailwind.config.js index 32f1c5c..e86ffca 100644 --- a/template/tailwind.config.js +++ b/template/tailwind.config.js @@ -15,6 +15,8 @@ module.exports = { './web/wp-content/themes/<%= slug %>/src/js/**/*.js', './web/wp-content/themes/<%= slug %>/src/js/**/*.vue', './web/wp-content/themes/<%= slug %>/templates/**/*.twig', + './vendor/studiometa/ui/packages/ui/**/*.twig', + './vendor/studiometa/ui/packages/ui/**/*.js', ], }, mode: 'jit', From 4bcd510e676ed8d5751084ff46f5c08a01a7bf44 Mon Sep 17 00:00:00 2001 From: Ludovic Janot Date: Thu, 7 Jul 2022 15:04:14 +0200 Subject: [PATCH 2/2] Update changelog --- template/changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/template/changelog.md b/template/changelog.md index d4c767e..0cc2e68 100644 --- a/template/changelog.md +++ b/template/changelog.md @@ -6,3 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). --- + + +### Non-published +- Add @studiometa/ui source files to tailwind.config.js watch list. (74d2099)