Skip to content

Commit

Permalink
Merge pull request #661 from nextcloud-libraries/fix/corejs
Browse files Browse the repository at this point in the history
fix: Drop CoreJS from package.json
  • Loading branch information
susnux authored Apr 24, 2024
2 parents ab56b85 + 1573aa1 commit c46af75
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 44 deletions.
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ updates:
time: "03:00"
timezone: Europe/Berlin
open-pull-requests-limit: 10
versioning-strategy: increase
commit-message:
prefix: "chore"
include: "scope"
39 changes: 14 additions & 25 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 14 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,22 @@
"url": "https://github.com/nextcloud/nextcloud-logger"
},
"dependencies": {
"@nextcloud/auth": "^2.0.0",
"core-js": "^3.6.4"
"@nextcloud/auth": "^2.3.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.0",
"@nextcloud/eslint-config": "^8.3.0-beta.2",
"@nextcloud/typings": "^1.6.0",
"@nextcloud/vite-config": "^1.0.0-beta.19",
"@types/jest": "^29.2.5",
"@types/node": "^20.6.3",
"eslint": "^8.44.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"ts-jest": "^29.0.3",
"typedoc": "^0.25.0",
"typescript": "^5.0.2",
"vite": "5.2.10"
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.3.0",
"@nextcloud/typings": "^1.8.0",
"@nextcloud/vite-config": "^1.2.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vite": "^5.2.10"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"module": "ESNext",
"moduleResolution": "Bundler",
"declaration": true,
"outDir": "./dist",
"declarationDir": "./dist",
Expand Down
3 changes: 0 additions & 3 deletions vite.config.mjs → vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ import { createLibConfig } from '@nextcloud/vite-config'
export default createLibConfig({
index: 'lib/index.ts',
}, {
coreJS: {
usage: true,
},
minify: false,
libraryFormats: ['es', 'cjs'],
thirdPartyLicense: false, // non included all external
Expand Down

0 comments on commit c46af75

Please sign in to comment.