Skip to content

Commit

Permalink
Update a bunch of stuff please work 🙏
Browse files Browse the repository at this point in the history
  • Loading branch information
ImBaedin committed Nov 6, 2024
1 parent c248c72 commit 441befb
Show file tree
Hide file tree
Showing 10 changed files with 586 additions and 367 deletions.
10 changes: 7 additions & 3 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{
"presets": ["@babel/env", "@babel/typescript"],
"presets": [
"@babel/env",
"@babel/typescript"
],
"plugins": [
"@babel/proposal-class-properties",
"@babel/plugin-transform-object-assign",
"@babel/plugin-transform-classes"
"@babel/plugin-transform-classes",
"@babel/plugin-transform-duplicate-named-capturing-groups-regex"
]
}
}
12 changes: 8 additions & 4 deletions .github/workflows/PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ jobs:
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: npm install, build, build-ts, and test
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: pnpm install, build, build-ts, and test
run: |
npm install
npm run build --if-present
# npm test
pnpm install
pnpm run build --if-present
# pnpm test
14 changes: 9 additions & 5 deletions .github/workflows/Push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ jobs:
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: npm install, build, build-ts, and test
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: pnpm install, build, build-ts, and test
run: |
npm install
npm run build --if-present
# npm test
pnpm install
pnpm run build --if-present
# pnpm test
- name: publish
continue-on-error: true
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
run: npm publish
run: pnpm publish --no-git-checks
16 changes: 1 addition & 15 deletions docs/thpace.min.js

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@
"url": "git+https://github.com/ImBaedin/Thpace.git"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-classes": "^7.9.5",
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
Expand All @@ -41,11 +42,12 @@
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.31.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
"typescript": "^5.6.3"
},
"dependencies": {
"color-interpolate": "^1.0.5",
"delaunator": "^4.0.1",
"stats.js": "^0.17.0"
"stats.js": "^0.17.0",
"tslib": "^2.8.1"
}
}
Loading

0 comments on commit 441befb

Please sign in to comment.