Skip to content

Commit

Permalink
build: upgrade to Angular 16 and Electron 24
Browse files Browse the repository at this point in the history
  • Loading branch information
bampakoa committed Jul 24, 2023
1 parent f4657d5 commit d1cc9b4
Show file tree
Hide file tree
Showing 15 changed files with 19,993 additions and 3,934 deletions.
6,494 changes: 5,968 additions & 526 deletions package-lock.json

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-electronify",
"version": "2.0.1",
"version": "2.0.2",
"scripts": {
"serve": "tsc -w -p packages\\builder\\tsconfig.json",
"build": "tsc -p packages\\builder\\tsconfig.json && npm run build:schematics",
Expand All @@ -15,25 +15,25 @@
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"husky": "8.0.1",
"@types/node": "^20.4.4",
"husky": "8.0.3",
"jasmine": "^3.6.3",
"jasmine-node": "^3.0.0",
"prettier": "2.7.1",
"prettier": "3.0.0",
"standard-version": "^9.1.0",
"ts-node": "~8.3.0",
"typescript": "~4.5.2"
},
"dependencies": {
"@angular-devkit/architect": "0.1402.1",
"@angular-devkit/core": "^14.2.1",
"@angular-devkit/schematics": "14.2.1",
"@schematics/angular": "14.2.1",
"electron": "^19.0.8",
"@angular-devkit/architect": "0.1601.5",
"@angular-devkit/core": "^16.1.5",
"@angular-devkit/schematics": "16.1.5",
"@schematics/angular": "16.1.5",
"electron": "^24.3.1",
"electron-devtools-installer": "^3.2.0",
"ngx-electronyzer": "1.0.0"
"ngx-electronyzer": "1.0.1"
}
}
6 changes: 3 additions & 3 deletions packages/builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-electronify",
"version": "2.0.1",
"version": "2.0.2",
"description": "Angular CLI builder that runs your application in the desktop using Electron",
"keywords": [
"angular",
Expand All @@ -16,9 +16,9 @@
"save": "devDependencies"
},
"dependencies": {
"electron": "^19.0.8",
"electron": "^24.3.1",
"electron-devtools-installer": "^3.2.0",
"ngx-electronyzer": "1.0.0"
"ngx-electronyzer": "1.0.1"
},
"schematics": "./schematics/collection.json"
}
16 changes: 16 additions & 0 deletions packages/core/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
42 changes: 42 additions & 0 deletions packages/core/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# Compiled output
/dist
/tmp
/out-tsc
/bazel-out

# Node
/node_modules
npm-debug.log
yarn-error.log

# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings

# System files
.DS_Store
Thumbs.db
6 changes: 4 additions & 2 deletions packages/core/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/electron/src/test.ts",
"tsConfig": "projects/electron/tsconfig.spec.json",
"karmaConfig": "projects/electron/karma.conf.js"
"polyfills": [
"zone.js",
"zone.js/testing"
]
}
}
}
Expand Down
Loading

0 comments on commit d1cc9b4

Please sign in to comment.