generated from mattermost/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Makefile from starter template, upgrade node to v16, and remove mattermost-webapp dependency #229
Merged
mickmister
merged 8 commits into
mattermost-community:master
from
mickmister:remove-mm-webapp-dep
Nov 16, 2023
Merged
Update Makefile from starter template, upgrade node to v16, and remove mattermost-webapp dependency #229
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
fe80af3
remove mattermost-webapp dep
mickmister 454622e
remove not useful webapp test
mickmister 68602fe
change redux-offline dep to be https
mickmister 5b62b96
update nvmrc
mickmister 9f34ef7
remove enzyme deps
mickmister 097f6bb
update Makefile and build directory from starter template
mickmister 8c65a17
support ARM builds
mickmister 727010e
Merge branch 'master' into remove-mm-webapp-dep
mickmister File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 +1 @@ | ||
14.21.1 | ||
16.13.1 |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
module github.com/mattermost/mattermost-plugin-starter-template/build | ||
|
||
go 1.19 | ||
|
||
require ( | ||
github.com/mattermost/mattermost/server/public v0.0.10 | ||
github.com/pkg/errors v0.9.1 | ||
) | ||
|
||
require ( | ||
github.com/blang/semver/v4 v4.0.0 // indirect | ||
github.com/dyatlov/go-opengraph/opengraph v0.0.0-20220524092352-606d7b1e5f8a // indirect | ||
github.com/francoispqt/gojay v1.2.13 // indirect | ||
github.com/go-asn1-ber/asn1-ber v1.5.4 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/mattermost/go-i18n v1.11.1-0.20211013152124-5c415071e404 // indirect | ||
github.com/mattermost/ldap v0.0.0-20201202150706-ee0e6284187d // indirect | ||
github.com/mattermost/logr/v2 v2.0.16 // indirect | ||
github.com/pborman/uuid v1.2.1 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/philhofer/fwd v1.1.2 // indirect | ||
github.com/tinylib/msgp v1.1.8 // indirect | ||
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
github.com/wiggin77/merror v1.0.5 // indirect | ||
github.com/wiggin77/srslog v1.0.1 // indirect | ||
golang.org/x/crypto v0.10.0 // indirect | ||
golang.org/x/net v0.11.0 // indirect | ||
golang.org/x/text v0.10.0 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added
build/go.mod
to lessen the scope of this PR a bit. This way we don't introduce a bunch of changes to usemattermost/server/public
in this PR. That will be done in a separate effort to sync all plugin projects with starter templateThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good call 👍