Skip to content

Commit

Permalink
chore: 升级 L7 至最新测试版本
Browse files Browse the repository at this point in the history
  • Loading branch information
lvisei committed May 17, 2024
1 parent 9d4cfce commit 29b563c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 27 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
/.mfsu
/.idea
yarn.lock
pnpm-lock.yaml
/.dumi
/package-lock.json
/.DS_Stroe
Expand Down
55 changes: 28 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,26 @@
"name": "@antv/l7-editor",
"version": "1.1.13",
"description": "Geographic data editing tool based on L7",
"homepage": "https://l7editor.antv.antgroup.com",
"bugs": {
"url": "https://github.com/antvis/L7Editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/antvis/L7Editor"
},
"license": "MIT",
"author": {
"name": "AntV",
"url": "https://antv.antgroup.com"
},
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"lib",
"es"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"license": "MIT",
"scripts": {
"start": "dumi dev",
"build": "father build",
Expand All @@ -30,6 +42,16 @@
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish"
},
"lint-staged": {
"*.less": "stylelint --fix",
"*.{ts,tsx}": "eslint --fix",
"*.{ts,tsx,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/icons": "^4.8.0",
"@antv/l7-draw": "^3.0.21",
Expand All @@ -48,6 +70,7 @@
"i18next-browser-languagedetector": "^7.1.0",
"kiwi-intl": "^1.2.6-beta.0",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"monaco-editor": "^0.34.1",
"monaco-editor-webpack-plugin": "^7.0.1",
Expand All @@ -65,7 +88,7 @@
"xlsx": "^0.18.5"
},
"devDependencies": {
"@antv/l7": "^2.11.0",
"@antv/l7": "2.21.11-beta.1",
"@babel/runtime": "^7.22.10",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
Expand Down Expand Up @@ -99,30 +122,8 @@
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"lint-staged": {
"*.less": "stylelint --fix",
"*.{ts,tsx}": "eslint --fix",
"*.{ts,tsx,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"author": {
"name": "AntV",
"url": "https://antv.antgroup.com"
},
"homepage": "https://l7editor.antv.antgroup.com",
"repository": {
"type": "git",
"url": "https://github.com/antvis/L7Editor"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/antvis/L7Editor/issues"
}
}

0 comments on commit 29b563c

Please sign in to comment.