Skip to content

Commit 0cbad83

Browse files
committed
Fixed the "create user" modal. Fixed the pagination bar when pages = 0. Added small css tweaks for light / dark theme transitions. Replaced ngrok with official @ngrok/ngrok. Updated Node LTS version for docker / package.
1 parent fe52fe4 commit 0cbad83

File tree

83 files changed

+649
-15685
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+649
-15685
lines changed

.dockerignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ config/local.js
1414
test
1515

1616
**/README*
17-
CHANGELOG.md
17+
*.md
1818
LICENSE

.github/workflows/codeql.yml

-68
This file was deleted.

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -149,3 +149,7 @@ app.zip
149149

150150
# Downloaded binary files
151151
.bin
152+
153+
# Code coverage
154+
test/coverage/*
155+
!test/coverage/.gitkeep

.npmrc

+1-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,5 @@
77
# Hide NPM log output unless it is related to an error of some kind:
88
loglevel=error
99

10-
# Make "npm audit" an opt-in thing for subsequent installs within this app:
10+
# Run "npm audit" after installs
1111
audit=true
12-
13-
# Don't install optional dependencies automatically (which is a weird default NPM...):
14-
omit=optional

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ services: mysql
88
before_install:
99
- mysql -e 'CREATE DATABASE IF NOT EXISTS testing;'
1010
- mysql -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'mypass'"
11+
after_success: npm run codecov
12+
deploy:
13+
skip_cleanup: true

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [v4.3.0](https://github.com/neonexus/sails-react-bootstrap-webpack/compare/v4.2.4...v4.3.0) (2023-11-04)
4+
### Features
5+
6+
* Fixed the "create user" modal.
7+
* Fixed the pagination bar when `pages` = 0.
8+
* Added small css tweaks for light / dark theme transitions.
9+
* Updated Node LTS version for docker / package.
10+
* Removed `omit=optional` from `.npmrc`.
11+
* Replaced code coverage files with [Codecov](https://codecov.io).
12+
* Updated dependencies.
13+
14+
### Breaking Changes
15+
16+
* Replaced [`ngrok`](https://npmjs.org/package/ngrok) with official [`@ngrok/ngrok`](https://npmjs.org/package/@ngrok/ngrok) in [ngrok.js](ngrok.js).
17+
318
## [v4.2.4](https://github.com/neonexus/sails-react-bootstrap-webpack/compare/v4.2.3...v4.2.4) (2023-10-30)
419
### Features
520

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18-slim
1+
FROM node:20-slim
22
MAINTAINER NeoNexus DeMortis
33

44
RUN mkdir /var/www && mkdir /var/www/myapp

0 commit comments

Comments
 (0)