Skip to content

Commit

Permalink
Atualizar dependências
Browse files Browse the repository at this point in the history
  • Loading branch information
dgadelha committed Oct 13, 2024
1 parent dc90cbf commit d35aa36
Show file tree
Hide file tree
Showing 14 changed files with 1,326 additions and 1,034 deletions.
1 change: 1 addition & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ export default tseslint.config(
"unicorn/no-null": "off",
"unicorn/no-object-as-default-parameter": "off",
"unicorn/prefer-export-from": "off",
"unicorn/prefer-global-this": "off",
"unicorn/prefer-spread": "off",
"unicorn/prefer-ternary": "off",
"unicorn/prefer-top-level-await": "off",
Expand Down
2,293 changes: 1,291 additions & 1,002 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@
"release": "lerna run release"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@eslint/js": "^9.12.0",
"angular-eslint": "^18.3.1",
"eslint": "^9.11.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"lerna": "^8.1.8",
"sherif": "^1.0.0",
"typescript": "~5.5.4",
"typescript-eslint": "^8.7.0"
"typescript-eslint": "^8.8.1"
},
"workspaces": [
"packages/*"
Expand Down
2 changes: 1 addition & 1 deletion packages/antlr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"build:w": "tsc -w"
},
"dependencies": {
"antlr4ng": "^3.0.5"
"antlr4ng": "^3.0.7"
},
"devDependencies": {
"antlr4ng-cli": "^2.0.0",
Expand Down
34 changes: 17 additions & 17 deletions packages/ide/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,35 +29,35 @@
"lint": "ng lint"
},
"dependencies": {
"@angular/animations": "^18.2.5",
"@angular/common": "^18.2.5",
"@angular/compiler": "^18.2.5",
"@angular/core": "^18.2.5",
"@angular/animations": "^18.2.8",
"@angular/common": "^18.2.8",
"@angular/compiler": "^18.2.8",
"@angular/core": "^18.2.8",
"@angular/fire": "^18.0.1",
"@angular/forms": "^18.2.5",
"@angular/material": "^18.2.5",
"@angular/platform-browser": "^18.2.5",
"@angular/platform-browser-dynamic": "^18.2.5",
"@angular/service-worker": "^18.2.5",
"@angular/forms": "^18.2.8",
"@angular/material": "^18.2.8",
"@angular/platform-browser": "^18.2.8",
"@angular/platform-browser-dynamic": "^18.2.8",
"@angular/service-worker": "^18.2.8",
"@fontsource/lato": "^5.1.0",
"@fontsource/pt-sans": "^5.1.0",
"@materia-ui/ngx-monaco-editor": "^6.0.0",
"@mdi/svg": "^7.4.47",
"@ngxpert/hot-toast": "^3.0.1",
"@ngxpert/hot-toast": "^3.0.2",
"@portugol-webstudio/antlr": "*",
"@portugol-webstudio/parser": "*",
"@portugol-webstudio/resources": "*",
"@portugol-webstudio/runner": "*",
"@portugol-webstudio/runtime": "*",
"@sentry/angular": "^8.31.0",
"@sentry/angular": "^8.34.0",
"angular-split": "^17.2.0",
"angular-svg-icon": "^18.0.2",
"antlr4ng": "^3.0.5",
"antlr4ng": "^3.0.7",
"assert": "^2.1.0",
"file-saver": "^2.0.5",
"firebase": "^10.13.2",
"firebase": "^10.14.1",
"iconv-lite": "^0.6.3",
"jschardet": "^3.1.3",
"jschardet": "^3.1.4",
"monaco-editor": "^0.52.0",
"ng-keyboard-shortcuts": "^13.0.8",
"ngx-google-analytics": "^14.0.1",
Expand All @@ -68,9 +68,9 @@
"zone.js": "~0.14.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.5",
"@angular/cli": "^18.2.5",
"@angular/compiler-cli": "^18.2.5",
"@angular-devkit/build-angular": "^18.2.8",
"@angular/cli": "^18.2.8",
"@angular/compiler-cli": "^18.2.8",
"@types/file-saver": "^2.0.7",
"ts-node": "^10.9.2",
"typescript": "~5.5.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export interface ExampleItem {
export class DialogOpenExampleComponent implements OnInit, OnDestroy, AfterViewInit {
@Output() exampleOpened = new EventEmitter<{ title: string; code: string }>();

// eslint-disable-next-line @typescript-eslint/no-deprecated
treeControl: NestedTreeControl<ExampleItem>;
dataSource: MatTreeNestedDataSource<ExampleItem>;
current: ExampleItem | null = null;
Expand Down
1 change: 1 addition & 0 deletions packages/ide/src/app/tab-help/tab-help.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ interface TreeItem {
styleUrl: "./tab-help.component.scss",
})
export class TabHelpComponent implements OnInit, OnDestroy, AfterViewInit {
// eslint-disable-next-line @typescript-eslint/no-deprecated
treeControl: NestedTreeControl<TreeItem>;
dataSource: MatTreeNestedDataSource<TreeItem>;
current?: TreeItem;
Expand Down
2 changes: 1 addition & 1 deletion packages/parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"dependencies": {
"@portugol-webstudio/antlr": "*",
"antlr4ng": "^3.0.5"
"antlr4ng": "^3.0.7"
},
"devDependencies": {
"typescript": "~5.5.4"
Expand Down
4 changes: 2 additions & 2 deletions packages/resources/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
"build": "node --no-warnings --loader ts-node/esm src/atualizar.ts"
},
"devDependencies": {
"@swc/core": "^1.7.26",
"@swc/core": "^1.7.35",
"@types/adm-zip": "^0.5.5",
"@types/ini": "^4.1.1",
"adm-zip": "^0.5.16",
"axios": "^1.7.7",
"iconv-lite": "^0.6.3",
"ini": "^5.0.0",
"readdirp": "^4.0.1",
"readdirp": "^4.0.2",
"rimraf": "^6.0.1",
"slugify": "^1.6.6",
"typescript": "~5.5.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/resources/src/ajuda.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface TreeItem {
}

// @ts-expect-error
global.Tree = {
globalThis.Tree = {
create(data: { data: PortugolAjudaItem[] }) {
const items: TreeItem[] = [];

Expand Down
2 changes: 1 addition & 1 deletion packages/resources/src/helpers/patch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export async function patchPortugolFiles() {

const portugolSignaturePos = data.indexOf("/* $$$ Portugol Studio $$$ ");

if (portugolSignaturePos > -1) {
if (portugolSignaturePos !== -1) {
data = data.slice(0, Math.max(0, portugolSignaturePos));
}

Expand Down
2 changes: 1 addition & 1 deletion packages/runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@portugol-webstudio/antlr": "*",
"@portugol-webstudio/parser": "*",
"@portugol-webstudio/runtime": "*",
"antlr4ng": "^3.0.5",
"antlr4ng": "^3.0.7",
"rxjs": "~7.8.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
},
"dependencies": {
"@portugol-webstudio/antlr": "*",
"@sentry/core": "^8.31.0",
"antlr4ng": "^3.0.5"
"@sentry/core": "^8.34.0",
"antlr4ng": "^3.0.7"
},
"devDependencies": {
"typescript": "~5.5.4"
Expand Down
4 changes: 2 additions & 2 deletions packages/worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
"@portugol-webstudio/antlr": "*",
"@portugol-webstudio/parser": "*",
"@portugol-webstudio/runtime": "*",
"antlr4ng": "^3.0.5"
"antlr4ng": "^3.0.7"
},
"devDependencies": {
"antlr4ng-cli": "^2.0.0",
"webpack": "^5.94.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}

0 comments on commit d35aa36

Please sign in to comment.