Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Next #24

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft

Next #24

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,14 @@
]
}
],
// "padding-line-between-statements": [ "error", { blankLine: "always", prev: "*", next: "return" }],
"padding-line-between-statements": [
"error",
{
"blankLine": "always",
"prev": "*",
"next": "return"
}
],
"camelcase": "error",
"comma-dangle": [
"error",
Expand All @@ -66,7 +73,7 @@
"error",
"multi-line"
],
"eol-last": "error", // TODO: disable auto addition of new lines automatically in vscode, then disable this
"eol-last": "off",
"no-unused-vars": [
"error",
{
Expand Down
23 changes: 8 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "cssified-html",
"version": "1.0.0",
"version": "2.0.0-next",
"description": "A Javascript library and vite-plugin that adds a bunch of new exciting CSS related elements and attributes to your HTML.",
"private": true,
"main": "index.js",
"scripts": {
"dev": "pnpm -r dev",
"dev:watch": "pnpm -r dev:watch",
"build": "pnpm -r build",
"dev": "tsup src/index.ts --format esm,cjs,iife --sourcemap --dts",
"dev:watch": "tsup src/index.ts --format esm,cjs,iife --sourcemap --dts --watch",
"build": "tsup src/index.ts --format esm,cjs,iife --minify --sourcemap --dts",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore --fix --ext .js,.ts"
},
Expand All @@ -20,20 +20,13 @@
"url": "https://github.com/UltraCakeBakery/CSSified-HTML/issues"
},
"homepage": "https://github.com/UltraCakeBakery/CSSified-HTML#readme",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/jackvanderbilt"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.19.50",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.30.0",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"vite": "^3.2.11"
"tsup": "^8.3.0",
"typescript": "^5.4.5"
},
"type": "module"
}
38 changes: 0 additions & 38 deletions packages/core/package.json

This file was deleted.

229 changes: 0 additions & 229 deletions packages/core/src/index.ts

This file was deleted.

Loading