Skip to content
Merged
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
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
33 changes: 33 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Publish to NPM registry

on:
push:
branches:
- master
- release/*
- event-logging

jobs:
publish-gpr:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
environment: Production
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Version Patcher
uses: justalemon/VersionPatcher@v0.8
with:
version: 1.0.${{ github.run_number }}
npm-files: 'package.json'
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_AUTH_TOKEN }}
access: public
tag: latest
ignore-scripts: true

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Exclude these folders and all it content
# Exclude these folders and all it content
Library
Logs
Temp
Expand Down
14 changes: 14 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Ignore files and directories that should not be included in the npm package
.npmignore

# IDEs
.idea
.vscode
.vs
.fleet

# Gitlab, GitHub
.git
.gitignore
.gitlab-ci.yml
.github
2 changes: 1 addition & 1 deletion Editor.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Editor/Core.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions Editor/Core/EventChannelBaseEditor.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
using UnityEditor;
using Xprees.Events.ScriptableObjects.Base;

namespace Xprees.Events.Editor.Core
{
[CustomEditor(typeof(EventChannelBaseSO<>), true)]
public class EventChannelBaseEditor : UnityEditor.Editor
{

}
}
11 changes: 11 additions & 0 deletions Editor/Core/EventChannelBaseEditor.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 0 additions & 31 deletions Editor/Core/EventListenerEditorBase.cs

This file was deleted.

3 changes: 0 additions & 3 deletions Editor/Core/EventListenerEditorBase.cs.meta

This file was deleted.

30 changes: 0 additions & 30 deletions Editor/Core/VoidEventListenerEditor.cs

This file was deleted.

3 changes: 0 additions & 3 deletions Editor/Core/VoidEventListenerEditor.cs.meta

This file was deleted.

10 changes: 0 additions & 10 deletions Editor/GameObjectListenerEditor.cs

This file was deleted.

3 changes: 0 additions & 3 deletions Editor/GameObjectListenerEditor.cs.meta

This file was deleted.

8 changes: 8 additions & 0 deletions Editor/Resources.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Editor/Resources/icon_event.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 55 additions & 0 deletions Editor/Resources/icon_event.svg.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions Editor/Resources/icon_event_bool.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 55 additions & 0 deletions Editor/Resources/icon_event_bool.svg.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions Editor/Resources/icon_event_float.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading