Skip to content

Commit

Permalink
refactor: Update to Vite 6 & Tailwind CSS 4
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Feb 6, 2025
1 parent 567bc3c commit a84c560
Show file tree
Hide file tree
Showing 28 changed files with 2,418 additions and 1,961 deletions.
Empty file removed buildchain/.eslintignore
Empty file.
25 changes: 0 additions & 25 deletions buildchain/.eslintrc

This file was deleted.

27 changes: 0 additions & 27 deletions buildchain/.stylelintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion buildchain/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG TAG=20-alpine
ARG TAG=22-alpine
FROM node:$TAG

RUN npm install -g npm@^11.0.0
Expand Down
2 changes: 1 addition & 1 deletion buildchain/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MAJOR_VERSION?=5
TAG?=20-alpine
TAG?=22-alpine
CONTAINER?=$(shell basename $(dir $(CURDIR)))-v${MAJOR_VERSION}-buildchain
DEV_PORT?=300${MAJOR_VERSION}
IMAGE_INFO=$(shell docker image inspect $(CONTAINER):$(TAG))
Expand Down
15 changes: 15 additions & 0 deletions buildchain/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
import pluginVue from "eslint-plugin-vue";


/** @type {import('eslint').Linter.Config[]} */
export default [
{files: ["**/*.{js,mjs,cjs,ts,vue}"]},
{languageOptions: { globals: globals.browser }},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
...pluginVue.configs["flat/essential"],
{files: ["**/*.vue"], languageOptions: {parserOptions: {parser: tseslint.parser}}},
];
Loading

0 comments on commit a84c560

Please sign in to comment.