Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/devnet-bundle-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
nexus_url: ${{secrets.NEXUS_URL}}
nexus_url_release: ${{secrets.NEXUS_URL_RELEASE}}
nexus_url_snapshots: ${{secrets.NEXUS_URL_SNAPSHOTS}}
release_token: ${{secrets.RELEASE_TOKEN}}
git_mail: ${{secrets.GIT_MAIL}}
git_user: ${{secrets.GIT_USER}}
release_token: ${{secrets.TECHNICAL_USER_RELEASE_TOKEN}}
git_mail: ${{secrets.TECHNICAL_USER_MAIL}}
git_user: ${{secrets.TECHNICAL_USER_NAME}}
release_version: ${{ github.event.inputs.releaseVersion }}
next_dev_version: ${{ github.event.inputs.nextDevVersion }}
ms_teams_webhook_uri: ${{secrets.MS_TEAMS_WEBHOOK_URI}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/devnet-bundle-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
nexus_url: ${{secrets.NEXUS_URL}}
nexus_url_release: ${{secrets.NEXUS_URL_RELEASE}}
nexus_url_snapshots: ${{secrets.NEXUS_URL_SNAPSHOTS}}
release_token: ${{secrets.RELEASE_TOKEN}}
release_token: ${{secrets.TECHNICAL_USER_RELEASE_TOKEN}}
7 changes: 7 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@
"script": "watch-types",
"group": "build",
"problemMatcher": [],
},
{
"label": "Init playwright tests",
"detail": "Initialize playwright tests for this bundle",
"type": "npm",
"script": "npm init playwright@latest",
"group": "build"
}
]
}
5 changes: 5 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
const gulp = require("gulp");
const mapapps = require('ct-mapapps-gulp-js');
const mapappsBrowserSync = require("ct-mapapps-browser-sync");
const dotEnv = require("dotenv");
// load .env file if it exits
// the local dev jsregistry will lookup any @@key.property@@ expression, also as environment variable with name "KEY_PROPERTY" for replacement.
dotEnv.config();

const isProduction = process.env.NODE_ENV === "production";
console.info(`Configuring gulp build for ${isProduction ? "production" : "development"}`);
Expand Down Expand Up @@ -107,6 +111,7 @@ mapappsBrowserSync.registerTask({
npmModules: [
"mocha",
"chai",
"sinon",
"@conterra/mapapps-mocha-runner"
]
},
Expand Down
57 changes: 35 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,48 @@
"name": "mapapps-4-developers",
"description": "test build",
"version": "0.0.1",
"license": "CC0-1.0",
"license": "Apache-2.0",
"scripts": {
"check-licenses": "tsx ./src/support/js/check-licenses.ts",
"check-types": "tsc --noEmit",
"watch-types": "tsc -w --noEmit"
"check-licenses": "tsx ./src/support/js/check-licenses.ts",
"check-types": "tsc --noEmit",
"watch-types": "tsc -w --noEmit",
"e2e-test": "playwright test",
"e2e-test:headed": "playwright test --headed",
"e2e-test:ui": "playwright test --ui"
},
"dependencies": {
"@arcgis/core": "4.33.14",
"vue": "2.7.16"
},
"devDependencies": {
"@conterra/ct-mapapps-typings": "~4.18.3",
"@conterra/ct-mapapps-typings": "4.20.3",
"@conterra/mapapps-mocha-runner": "1.1.1",
"@conterra/reactivity-core": "^0.4.0",
"@types/chai": "4.3.10",
"@conterra/reactivity-core": "0.8.0",
"@playwright/test": "^1.52.0",
"@types/chai": "4.3.20",
"@types/license-checker": "^25.0.6",
"@types/mocha": "10.0.4",
"arcgis-js-api": "4.29.10",
"chai": "4.3.10",
"ct-mapapps-browser-sync": "0.0.41",
"ct-mapapps-gulp-js": "0.10.3",
"eslint-config-ct-prodeng": "1.4.0",
"@types/mocha": "10.0.10",
"@types/node": "^22.18.1",
"@types/sinon": "^17.0.3",
"chai": "4.5.0",
"ct-mapapps-browser-sync": "0.0.47",
"ct-mapapps-gulp-js": "0.10.15",
"dojo-typings": "1.11.11",
"dotenv": "17.2.3",
"eslint": "8.57.1",
"eslint-config-ct-prodeng": "1.5.0",
"license-checker": "25.0.1",
"mocha": "10.2.0",
"puppeteer": "21.5.2",
"stylelint": "15.11.0",
"mocha": "11.7.4",
"puppeteer": "24.25.0",
"sinon": "19.0.2",
"stylelint-config-ct-prodeng": "2.0.0",
"stylelint-config-recommended": "13.0.0",
"stylelint-config-recommended-less": "2.0.0",
"stylelint-config-recommended": "13.0.0",
"stylelint": "15.11.0",
"ts-node": "^10.9.1",
"tsx": "^4.6.0",
"typescript": "5.4.5",
"vue": "2.7.15",
"vue-template-compiler": "2.7.15"
}
"tsx": "^4.20.5",
"typescript": "5.9.2",
"vue-template-compiler": "2.7.16"
},
"packageManager": "pnpm@10.18.3"
}
Loading
Loading