Skip to content

Commit

Permalink
Merge branch 'staging' into add-chocolatey-build
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Oct 15, 2021
2 parents a4f5a43 + 878c48e commit 07eaf19
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -29,7 +29,7 @@
"snyk-protect": "snyk protect"
},
"engines": {
"node": ">= 6.9.1"
"node": ">= 12"
},
"devDependencies": {
"chalk": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-app/e2e/tsconfig.e2e.json
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"outDir": "../out-tsc/e2e",
"module": "commonjs",
"target": "es5",
"target": "es2020",
"types":[
"jasmine",
"node"
Expand Down
6 changes: 5 additions & 1 deletion packages/altair-app/src/app/modules/altair/error-handler.ts
Expand Up @@ -17,7 +17,11 @@ export class GlobalErrorHandler implements ErrorHandler {
const notifyService = this.injector.get(NotifyService);
const errorMessage = error.message ? error.message : error.toString();
const issueTitle = `Bug: Application error: ${errorMessage}`;
const issueBody = `Error message: ${errorMessage}\n\nError stack:\n\n\`\`\`\n${error.stack}\n\`\`\``;
const issueBody = `
\nError message: ${errorMessage}\n\nError stack:\n\n\`\`\`\n${error.stack}\n\`\`\`
\n### When did this error occur? And does it re occur, or it happened only once?\n
\n### Please provide some helpful screenshots of the bug
`;
const issueUrl = newGithubIssueUrl({
user: 'imolorhe',
repo: 'altair',
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-core/package.json
Expand Up @@ -10,7 +10,7 @@
"prepare": "npm run declarations"
},
"engines": {
"node": ">= 6.9.1"
"node": ">= 12"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-core/tsconfig.json
Expand Up @@ -3,7 +3,7 @@
"outDir": "build/",
"rootDir": "./src",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"lib": [
"dom",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-express-middleware/package.json
Expand Up @@ -12,7 +12,7 @@
"example": "nodemon example/index.ts"
},
"engines": {
"node": ">= 6.9.1"
"node": ">= 12"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-express-middleware/tsconfig.json
Expand Up @@ -3,7 +3,7 @@
"outDir": "build/",
"rootDir": "./",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"lib": [
"dom",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-koa-middleware/package.json
Expand Up @@ -11,7 +11,7 @@
"example": "nodemon example/index.ts"
},
"engines": {
"node": ">= 6.9.1"
"node": ">= 12"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-koa-middleware/tsconfig.json
Expand Up @@ -7,7 +7,7 @@
"outDir": "build/",
"rootDir": "./",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"lib": [
"dom",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-plugin/package.json
Expand Up @@ -10,7 +10,7 @@
"prepare": "npm run declarations"
},
"engines": {
"node": ">= 6.9.1"
"node": ">= 12"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-plugin/tsconfig.json
Expand Up @@ -3,7 +3,7 @@
"outDir": "build/",
"rootDir": "./src",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"lib": [
"dom",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-static/tsconfig.json
Expand Up @@ -3,7 +3,7 @@
"outDir": "build/",
"rootDir": "src",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"sourceMap": true,
"skipLibCheck": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-altair-graphql/tsconfig.json
Expand Up @@ -3,7 +3,7 @@
"outDir": ".",
"rootDir": "src",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"sourceMap": true,
"lib": [
Expand Down

0 comments on commit 07eaf19

Please sign in to comment.