Skip to content

Commit

Permalink
Publish 32.0.4 (#76)
Browse files Browse the repository at this point in the history
- add support to vue typescript language
  • Loading branch information
SalvatorePreviti authored Jul 16, 2024
1 parent 32cdc11 commit b6b7da7
Show file tree
Hide file tree
Showing 16 changed files with 249 additions and 302 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@babel/types": "7.23.0",
"@types/glob": "8.1.0",
"glob": "11.0.0",
"prettier": "3.3.2",
"prettier": "3.3.3",
"typedoc": "^0.26.3",
"typescript": "5.5.3",
"tsx": "4.16.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/ast/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
"@ag-grid-devtools/build-config": "workspace:*"
},
"peerDependencies": {
"eslint": "^8",
"eslint": "8.57.0",
"typedoc": "^0.26",
"typescript": "^5",
"typescript": "5.5.3",
"vite": "^5",
"vitest": "^1"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/build-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"dependencies": {
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"@vitejs/plugin-react-swc": "3.7.0",
"@vitest/coverage-v8": "1.6.0",
"eslint": "8.56.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react-hooks": "4.6.2",
Expand Down
8 changes: 5 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@ag-grid-devtools/cli",
"version": "32.0.3",
"version": "32.0.4",
"license": "MIT",
"description": "AG Grid developer toolkit",
"author": "AG Grid <[email protected]>",
Expand Down Expand Up @@ -65,6 +65,8 @@
],
"dependencies": {
"@ag-grid-devtools/codemods": "workspace:*",
"@typescript-eslint/parser": "7.16.1",
"eslint": "8.57.0",
"tsx": "4.16.2"
},
"devDependencies": {
Expand All @@ -86,9 +88,9 @@
"vite-plugin-static-copy": "1.0.6"
},
"peerDependencies": {
"eslint": "^8",
"eslint": "8.57.0",
"typedoc": "^0.26",
"typescript": "^5",
"typescript": "5.5.3",
"vite": "^5",
"vitest": "^1"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/codemod-task-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
"@ag-grid-devtools/build-config": "workspace:*"
},
"peerDependencies": {
"eslint": "^8",
"eslint": "8.57.0",
"typedoc": "^0.26",
"typescript": "^5",
"typescript": "5.5.3",
"vite": "^5",
"vitest": "^1"
}
Expand Down
9 changes: 5 additions & 4 deletions packages/codemod-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"@ag-grid-devtools/utils": "workspace:*",
"@angular-eslint/template-parser": "17.5.2",
"@angular/compiler": "17.0.1",
"@typescript-eslint/types": "7.14.1",
"prettier": "3.3.2",
"@typescript-eslint/types": "7.16.1",
"prettier": "3.3.3",
"recast": "0.23.4",
"vue-eslint-parser": "9.3.2"
},
Expand All @@ -56,9 +56,10 @@
"@ag-grid-devtools/test-utils": "workspace:*"
},
"peerDependencies": {
"eslint": "^8",
"@typescript-eslint/parser": "7.16.1",
"eslint": "8.57.0",
"typedoc": "^0.26",
"typescript": "^5",
"typescript": "5.5.3",
"vite": "^5",
"vitest": "^1"
}
Expand Down
3 changes: 3 additions & 0 deletions packages/codemod-utils/src/vueHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,9 @@ export function matchVueComponentMethod(method: NodePath): {
export function parseVueSfcComponent(source: string): AST.ESLintProgram {
return parse(source, {
sourceType: 'module',
parser: {
ts: '@typescript-eslint/parser',
},
});
}

Expand Down
4 changes: 2 additions & 2 deletions packages/codemods/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@
"@ag-grid-devtools/utils": "workspace:*"
},
"peerDependencies": {
"eslint": "^8",
"eslint": "8.57.0",
"typedoc": "^0.26",
"typescript": "^5",
"typescript": "5.5.3",
"vite": "^5",
"vitest": "^1"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
</div>
</template>

<script>
<script lang="ts">
import { AgGridVue } from '@ag-grid-community/vue';
export interface MyInterfaceToTestTsParser {}
export default {
components: {
'ag-grid-vue': AgGridVue,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
</div>
</template>

<script>
<script lang="ts">
import { AgGridVue } from '@ag-grid-community/vue';
export interface MyInterfaceToTestTsParser {}
export default {
components: {
'ag-grid-vue': AgGridVue,
Expand Down
6 changes: 3 additions & 3 deletions packages/systemjs-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/plugin-transform-typescript": "^7.23.6",
"@types/babel__core": "^7.20.5",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1"
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1"
},
"peerDependencies": {
"eslint": "^8.56.0",
"eslint": "8.57.0",
"typescript": "^5.5.3",
"vite": "^5",
"vite-plugin-node-polyfills": "^0.22"
Expand Down
6 changes: 3 additions & 3 deletions packages/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@ag-grid-devtools/utils": "workspace:*",
"@angular-eslint/template-parser": "17.5.2",
"@angular/compiler": "17.0.1",
"@typescript-eslint/types": "7.14.1",
"@typescript-eslint/types": "7.16.1",
"memfs": "4.6.0"
},
"devDependencies": {
Expand All @@ -54,9 +54,9 @@
"peerDependencies": {
"@vitest/expect": "^1",
"@vitest/runner": "^1",
"eslint": "^8",
"eslint": "8.57.0",
"typedoc": "^0.26",
"typescript": "^5",
"typescript": "5.5.3",
"vite": "^5",
"vitest": "^1"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
"@ag-grid-devtools/build-config": "workspace:*"
},
"peerDependencies": {
"eslint": "^8",
"eslint": "8.57.0",
"typedoc": "^0.26",
"typescript": "^5",
"typescript": "5.5.3",
"vite": "^5"
}
}
4 changes: 2 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
"app-module-path": "2.2.0"
},
"peerDependencies": {
"eslint": "^8",
"eslint": "8.57.0",
"typedoc": "^0.26",
"typescript": "^5",
"typescript": "5.5.3",
"vite": "^5",
"vitest": "^1"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/worker-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
"@ag-grid-devtools/build-config": "workspace:*"
},
"peerDependencies": {
"eslint": "^8",
"eslint": "8.57.0",
"typedoc": "^0.26",
"typescript": "^5",
"typescript": "5.5.3",
"vite": "^5",
"vitest": "^1"
}
Expand Down
Loading

0 comments on commit b6b7da7

Please sign in to comment.