Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ jobs:
fail-fast: false
matrix:
include:
- artifact-name: react-testing-library.rbxm
path: build/react-testing-library.rbxm
- artifact-name: roact-navigation.rbxm
path: build/roact-navigation.rbxm
asset-type: application/octet-stream

- artifact-name: react-testing-library-dev.rbxm
path: build/debug/react-testing-library.rbxm
- artifact-name: roact-navigation-dev.rbxm
path: build/debug/roact-navigation.rbxm
asset-type: application/octet-stream
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Tests
"on":
push:
branches:
- main
- master
pull_request:
branches:
- main
- master

jobs:
test:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Work in progress, to be added to next release notes.

### v0.5.10

* Added `useNavigation` hook to the module's export ([#2](https://github.com/jsdotlua/roact-navigation/pull/2))
* Added "non-transparent, see-through card" support to RobloxStackView ([#148](https://github.com/Roblox/roact-navigation-internal/pull/148))

### v0.5.9
Expand Down
1 change: 1 addition & 0 deletions src/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ return {

withNavigation = require("./views/withNavigation"),
withNavigationFocus = require("./views/withNavigationFocus"),
useNavigation = require("./views/useNavigation"),

-- Navigators
createRobloxStackNavigator = require("./navigators/createRobloxStackNavigator"),
Expand Down
2 changes: 0 additions & 2 deletions src/routers/_tests_/createConfigGetter.spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ local React = require("@pkg/@jsdotlua/react")
local JestGlobals = require("@pkg/@jsdotlua/jest-globals")
local expect = JestGlobals.expect
local it = JestGlobals.it
local describe = JestGlobals.describe
local beforeEach = JestGlobals.beforeEach

local createConfigGetter = require("../createConfigGetter")

Expand Down
1 change: 0 additions & 1 deletion src/routers/_tests_/pathToRegexp.spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ local JestGlobals = require("@pkg/@jsdotlua/jest-globals")
local expect = JestGlobals.expect
local it = JestGlobals.it
local describe = JestGlobals.describe
local beforeEach = JestGlobals.beforeEach
local pathToRegexp = require("../pathToRegexp")

local undefined = {}
Expand Down
Loading