-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marius Austerschulte
committed
Jun 13, 2024
1 parent
e201d55
commit 710d239
Showing
37 changed files
with
548 additions
and
530 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,6 @@ | ||
{ | ||
"extends": "eslint-config-ct-prodeng", | ||
"overrides": [ | ||
{ | ||
"files": ["*.js"], | ||
"globals": { | ||
// For javascript based unit tests (typescript has typings for this) | ||
"describe": "readonly", | ||
"it": "readonly", | ||
"before": "readonly", | ||
"beforeEach": "readonly", | ||
"after": "readonly", | ||
"afterEach": "readonly" | ||
} | ||
} | ||
] | ||
"extends": "eslint-config-ct-prodeng", | ||
"plugins": [ | ||
"vue" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ | |
/.vscode/settings.json | ||
/.externalToolBuilders/ | ||
/package-lock.json | ||
/gulpfile.overrides.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# add path patterns to ignore style files | ||
**/external-libs/** | ||
**/styles/dijit/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "stylelint-config-ct-prodeng" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
✅ Tested for map.apps 4.12.0 / Linie 4 | ||
✅ Tested for map.apps 4.18.1 / Line 4 | ||
|
||
#### Release Notes | ||
- SNAPSHOT-Release | ||
- autogenerated SNAPSHOT-Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright (C) 2019 con terra GmbH ([email protected]) | ||
* Copyright (C) 2024 con terra GmbH ([email protected]) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
|
@@ -15,38 +15,165 @@ | |
*/ | ||
const gulp = require("gulp"); | ||
const mapapps = require('ct-mapapps-gulp-js'); | ||
const mapappsBrowserSync = require("ct-mapapps-browser-sync"); | ||
|
||
const isProduction = process.env.NODE_ENV === "production"; | ||
console.info(`Configuring gulp build for ${isProduction ? "production" : "development"}`); | ||
|
||
const localOverrides = (function () { | ||
if (isProduction) { | ||
// Never override defaults in production mode | ||
return undefined; | ||
} | ||
|
||
try { | ||
return require("./gulpfile.overrides"); | ||
} catch (e) { | ||
// File may not exist | ||
return undefined; | ||
} | ||
})(); | ||
|
||
// used to transport test urls in "run-browser-tests-local" task | ||
const runBrowserTests = []; | ||
|
||
mapapps.registerTasks({ | ||
/** Enable debug logging */ | ||
debug: localOverrides?.debug ?? false, | ||
/** enable linting */ | ||
lintOnWatch: localOverrides?.lintOnWatch ?? true, | ||
/** enable es6 by default */ | ||
forceTranspile: true, | ||
/* A detailed description of available setting is available at https://www.npmjs.com/package/ct-mapapps-gulp-js */ | ||
compress: isProduction, | ||
|
||
/* build source maps as e.g. ".js.map" */ | ||
sourceMaps: "file", | ||
|
||
/** Build Unit-Tests only in dev mode */ | ||
rollupBuildTests: !isProduction, | ||
/** Amount of Threads used to build the bundles, if there are only a few bundles 1 is ok. | ||
* More as 3 is normally not required. | ||
*/ | ||
rollupBuildMaxWorkers: localOverrides?.rollupBuildMaxWorkers ?? 1, | ||
|
||
/** List of build time flags, usage like: import { debug } from "build-config!". | ||
*/ | ||
rollupConfig: { | ||
debug: !isProduction | ||
}, | ||
|
||
/* a list of themes inside this project */ | ||
themes: [/*"sample-theme"*/], | ||
themes: [], | ||
/* state that the custom theme will be dependant from map.apps everlasting theme that provides the base styles */ | ||
hasBaseThemes: true, | ||
/* state that we want to support vuetify components and therefore need the the vuetify core styles*/ | ||
/* state that we want to support vuetify components and therefore need the vuetify core styles*/ | ||
hasVuetify: true, | ||
/*themeChangeTargets: { | ||
"vuetify": [ | ||
"sample_theme" | ||
themeChangeTargets: { | ||
"vuetify": [] | ||
}, | ||
/* A list oft target browser versions. This should be streamlined with Esri JS API requirements. */ | ||
transpileTargets: { | ||
firefox: 102, | ||
edge: 104, | ||
chrome: 104, | ||
safari: 15 | ||
}, | ||
runBrowserTests, | ||
watchFinishedReceiver() { | ||
if (localOverrides?.autoReload ?? true) { | ||
mapappsBrowserSync.state.reload(); | ||
} | ||
} | ||
}, gulp); | ||
|
||
mapappsBrowserSync.registerTask({ | ||
// on which port to listen | ||
port: localOverrides?.port ?? 9090, | ||
// activate https protocol, generates a self signed certificate for "localhost" | ||
// https://browsersync.io/docs/options#option-https | ||
https: localOverrides?.https ?? false, | ||
|
||
// to prevent auto open of browser, set this to false | ||
urlToOpen: localOverrides?.openBrowser ?? true, | ||
properties: { | ||
paths: [ | ||
// Ensure @@key@@ expressions filtered in tests files | ||
/^\/js\/tests\/(runTests.html|test-init.js|init-packs.js)$/ | ||
] | ||
}, | ||
jsreg: { | ||
//npmDir : __dirname + "/node_modules/", | ||
npmModules: [ | ||
"mocha", | ||
"chai", | ||
"@conterra/mapapps-mocha-runner" | ||
] | ||
}*/ | ||
}); | ||
}, | ||
// prevent reload by browser sync (reload triggered on watch end) | ||
externalReloadTrigger: true | ||
}, gulp); | ||
|
||
gulp.task("default", | ||
gulp.task("build", | ||
gulp.series( | ||
"copy-resources", | ||
"themes-copy", | ||
gulp.parallel( | ||
//"js-lint", | ||
//"style-lint", | ||
"js-transpile", | ||
"rollup-build", | ||
"themes-compile" | ||
) | ||
) | ||
); | ||
|
||
gulp.task("lint", | ||
gulp.parallel( | ||
"js-lint" | ||
/*, comment in to lint .css/.less files | ||
"style-lint" | ||
*/ | ||
)); | ||
|
||
gulp.task("preview", | ||
gulp.series( | ||
"build", | ||
gulp.parallel( | ||
"watch", | ||
"browser-sync" | ||
) | ||
)); | ||
|
||
gulp.task("run-tests", | ||
gulp.series( | ||
"browser-sync-start", | ||
function transportTestUrls() { | ||
// transport test url to run-browser-tests | ||
// eslint-disable-next-line max-len | ||
const testsAt = mapappsBrowserSync.state.url + "/resources/jsregistry/root/@conterra/mapapps-mocha-runner/latest/mocha.html?boot=/js/tests/test-init.js&timeout=5000&test=dn_slice/tests/all&reporter=tap"; | ||
runBrowserTests.push(testsAt); | ||
return Promise.resolve(); | ||
}, | ||
"run-browser-tests", | ||
"browser-sync-stop" | ||
)); | ||
|
||
gulp.task("test", | ||
gulp.series( | ||
"build", | ||
"lint", | ||
"run-tests" | ||
)); | ||
|
||
gulp.task("compress", | ||
gulp.series( | ||
"default", | ||
"themes-compress" | ||
"build", | ||
"themes-compress", | ||
"lint" | ||
) | ||
); | ||
|
||
gulp.task("default", | ||
gulp.series( | ||
"build", | ||
"lint" | ||
)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,36 @@ | ||
{ | ||
"name": "test", | ||
"name": "mapapps-slice", | ||
"description": "test build", | ||
"version": "0.0.1", | ||
"license": "CC0-1.0", | ||
"scripts": { | ||
"check-licenses": "tsx ./src/support/js/check-licenses.ts", | ||
"check-types": "tsc --noEmit", | ||
"watch-types": "tsc -w --noEmit" | ||
}, | ||
"devDependencies": { | ||
"@conterra/ct-mapapps-typings": "~4.12.0", | ||
"@conterra/mapapps-mocha-runner": "^1.0.0", | ||
"@types/arcgis-js-api": "4.20.0", | ||
"ct-mapapps-gulp-js": "^0.5.27", | ||
"vue-template-compiler": "2.6.14", | ||
"puppeteer": "^10.0.0", | ||
"eslint-config-ct-prodeng": "^1.1.16", | ||
"stylelint-config-ct-prodeng": "1.0.3", | ||
"chai": "^4.3.4", | ||
"mocha": "^9.0.0" | ||
"@conterra/ct-mapapps-typings": "~4.18.1", | ||
"@conterra/mapapps-mocha-runner": "1.1.1", | ||
"@conterra/reactivity-core": "^0.4.0", | ||
"@types/chai": "4.3.10", | ||
"@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.39", | ||
"ct-mapapps-gulp-js": "0.10.3", | ||
"eslint-config-ct-prodeng": "1.4.0", | ||
"license-checker": "25.0.1", | ||
"mocha": "10.2.0", | ||
"puppeteer": "21.5.2", | ||
"stylelint": "15.11.0", | ||
"stylelint-config-ct-prodeng": "2.0.0", | ||
"stylelint-config-recommended": "13.0.0", | ||
"stylelint-config-recommended-less": "2.0.0", | ||
"ts-node": "^10.9.1", | ||
"tsx": "^4.6.0", | ||
"typescript": "5.4.5", | ||
"vue": "2.7.15", | ||
"vue-template-compiler": "2.7.15" | ||
} | ||
} |
Oops, something went wrong.