Skip to content

Commit 1573aa1

Browse files
committed
fix: Drop CoreJS from package.json - This is already included in Nextcloud server for years
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent 78a6fc2 commit 1573aa1

4 files changed

Lines changed: 17 additions & 31 deletions

File tree

package-lock.json

Lines changed: 14 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@
3535
"url": "https://github.com/nextcloud/nextcloud-logger"
3636
},
3737
"dependencies": {
38-
"@nextcloud/auth": "^2.0.0",
39-
"core-js": "^3.6.4"
38+
"@nextcloud/auth": "^2.3.0"
4039
},
4140
"devDependencies": {
4241
"@nextcloud/browserslist-config": "^3.0.1",

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"compilerOptions": {
33
"target": "ESNext",
4-
"module": "commonjs",
4+
"module": "ESNext",
5+
"moduleResolution": "Bundler",
56
"declaration": true,
67
"outDir": "./dist",
78
"declarationDir": "./dist",

vite.config.mjs renamed to vite.config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ import { createLibConfig } from '@nextcloud/vite-config'
33
export default createLibConfig({
44
index: 'lib/index.ts',
55
}, {
6-
coreJS: {
7-
usage: true,
8-
},
96
minify: false,
107
libraryFormats: ['es', 'cjs'],
118
thirdPartyLicense: false, // non included all external

0 commit comments

Comments
 (0)