Skip to content

Commit 7fe8057

Browse files
author
SasidharanKaruppiah
authored
Merge pull request #31 from SyncfusionExamples/EJ2-915494-dependent_bot
915494: Resolved dependent bot issues
2 parents 41eb465 + aee9fb8 commit 7fe8057

File tree

82 files changed

+528
-741
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+528
-741
lines changed

Annotations/Interaction with annotations/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# quickstart
1+
# annotation
22

33
## Project setup
44
```
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"module": "esnext",
5+
"baseUrl": "./",
6+
"moduleResolution": "node",
7+
"paths": {
8+
"@/*": [
9+
"src/*"
10+
]
11+
},
12+
"lib": [
13+
"esnext",
14+
"dom",
15+
"dom.iterable",
16+
"scripthost"
17+
]
18+
}
19+
}

Annotations/Interaction with annotations/package.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@
99
},
1010
"dependencies": {
1111
"@syncfusion/ej2-vue-pdfviewer": "*",
12+
"buffer": "^6.0.3",
1213
"core-js": "^3.8.3",
13-
"vue": "^2.7.16"
14+
"crypto-browserify": "^3.12.0",
15+
"stream-browserify": "^3.0.0",
16+
"util": "^0.12.5",
17+
"vm-browserify": "^1.1.2",
18+
"vue": "^3.2.13"
1419
},
1520
"devDependencies": {
1621
"@babel/core": "^7.12.16",
@@ -19,8 +24,7 @@
1924
"@vue/cli-plugin-eslint": "~5.0.0",
2025
"@vue/cli-service": "~5.0.0",
2126
"eslint": "^7.32.0",
22-
"eslint-plugin-vue": "^8.0.3",
23-
"vue-template-compiler": "^2.7.16"
27+
"eslint-plugin-vue": "^8.0.3"
2428
},
2529
"eslintConfig": {
2630
"root": true,
@@ -39,6 +43,7 @@
3943
"browserslist": [
4044
"> 1%",
4145
"last 2 versions",
42-
"not dead"
46+
"not dead",
47+
"not ie 11"
4348
]
4449
}

Annotations/Interaction with annotations/src/App.vue

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
import Vue from 'vue'
1+
import { createApp } from 'vue'
22
import App from './App.vue'
33

4-
Vue.config.productionTip = false
5-
6-
new Vue({
7-
render: h => h(App),
8-
}).$mount('#app')
4+
createApp(App).mount('#app')
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
const { defineConfig } = require('@vue/cli-service')
2+
module.exports = defineConfig({
3+
transpileDependencies: true
4+
})

Getting Started - Standalone/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# quickstart
1+
# getting-started-standalone
22

33
## Project setup
44
```
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"module": "esnext",
5+
"baseUrl": "./",
6+
"moduleResolution": "node",
7+
"paths": {
8+
"@/*": [
9+
"src/*"
10+
]
11+
},
12+
"lib": [
13+
"esnext",
14+
"dom",
15+
"dom.iterable",
16+
"scripthost"
17+
]
18+
}
19+
}

0 commit comments

Comments
 (0)