Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
c911b56
Use react-scripts 4.0.3
MarkEWaite Apr 17, 2021
3c67a11
Merge pull request #58 from MarkEWaite/fix/upgrade-node-version
MarkEWaite Apr 17, 2021
680122c
Use nodeJS LTS in sample Jenkinsfile
MarkEWaite Apr 17, 2021
5508eec
Use react 17.0.2 - most recent LTS
MarkEWaite Jan 15, 2022
d656dbd
Merge pull request #71 from jenkins-docs/Use-react-17.0.2-lts
MarkEWaite Jan 15, 2022
2cf99dd
Make this work with modern react
NotMyFault Dec 16, 2022
0d89899
Migrate from 'ReactDom' to 'ReactDOM'
NotMyFault Mar 14, 2023
9ff8c3c
Bump word-wrap from 1.2.3 to 1.2.5
dependabot[bot] Aug 2, 2023
fee7fbe
Bump tough-cookie from 4.1.2 to 4.1.3
dependabot[bot] Aug 2, 2023
914880f
Bump semver from 6.3.0 to 6.3.1
dependabot[bot] Aug 2, 2023
7cd22ff
Bump json5 from 1.0.1 to 1.0.2
dependabot[bot] Aug 2, 2023
882c35e
Bump webpack from 5.75.0 to 5.88.2 (#104)
dependabot[bot] Jun 18, 2024
ecc0680
Bump follow-redirects from 1.15.2 to 1.15.4 (#120)
dependabot[bot] Jun 18, 2024
ee6cea3
Bump @babel/traverse from 7.20.5 to 7.23.2 (#109)
dependabot[bot] Jun 18, 2024
440a000
Bump follow-redirects from 1.15.4 to 1.15.6 (#126)
dependabot[bot] Jun 18, 2024
bcd804c
Bump ejs from 3.1.8 to 3.1.10 (#128)
dependabot[bot] Jun 18, 2024
8af9f2d
Bump webpack-dev-middleware from 5.3.3 to 5.3.4 (#129)
dependabot[bot] Jun 18, 2024
b979855
Bump express from 4.18.2 to 4.19.2 (#130)
dependabot[bot] Jun 18, 2024
4fcbdcc
Bump braces from 3.0.2 to 3.0.3 (#127)
dependabot[bot] Jun 18, 2024
5579f39
Create LICENSE.txt (#154)
mkurzman Jul 18, 2025
5dca00c
Update with latest versions (#161)
MarkEWaite Jul 21, 2025
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,6 @@ typings/

# dotenv environment variables file
.env

.idea
build
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Jenkins Documentation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pipeline {
agent {
docker {
image 'node:6-alpine'
image 'node:lts-buster-slim'
args '-p 3000:3000'
}
}
Expand Down
Loading