Skip to content

Commit

Permalink
chore(deps): upgrade dependencies (#600)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoGabriele authored Feb 9, 2025
1 parent 1d16f29 commit f25e45b
Show file tree
Hide file tree
Showing 70 changed files with 4,065 additions and 13,597 deletions.
108 changes: 0 additions & 108 deletions .circleci/config.yml

This file was deleted.

4 changes: 0 additions & 4 deletions .codeclimate.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

29 changes: 0 additions & 29 deletions .eslintrc.js

This file was deleted.

45 changes: 0 additions & 45 deletions .github/dependabot.yml

This file was deleted.

41 changes: 41 additions & 0 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [23.5.0]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Install dependencies
run: pnpm install

# Linting
- name: Run ESLint
run: pnpm exec eslint .

# Testing
- name: Run tests
run: pnpm test

# Building
- name: Build the project
run: pnpm build
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
}
}
26 changes: 26 additions & 0 deletions __old_config_bili
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// import path from "path";
// import { name } from "./package.json";

// const isDev = process.env.NODE_ENV === "dev";

// const config = {
// input: {
// [name]: "./src/index.js",
// },
// externals: ["vue"],
// plugins: {
// alias: {
// resolve: [".js"],
// entries: [
// { find: /^@\/(.*)/, replacement: path.resolve(__dirname, "src/$1") },
// ],
// },
// },
// output: {
// dir: "./dist/",
// format: isDev ? ["esm"] : ["esm", "cjs", "umd", "umd-min"],
// moduleName: "VueGtag",
// },
// };

// export default config;
1 change: 0 additions & 1 deletion _config.yml

This file was deleted.

3 changes: 0 additions & 3 deletions babel.config.js

This file was deleted.

26 changes: 0 additions & 26 deletions bili.config.js

This file was deleted.

31 changes: 31 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": ["dist"]
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"ignore": ["vue-gtag.d.ts"],
"rules": {
"recommended": true
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}
2 changes: 0 additions & 2 deletions jest/init.js

This file was deleted.

Loading

0 comments on commit f25e45b

Please sign in to comment.