Skip to content

Commit 407e9d8

Browse files
committed
1.0.1
1 parent d28bd4b commit 407e9d8

File tree

9 files changed

+48
-33
lines changed

9 files changed

+48
-33
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ jobs:
3636
- name: install foreman packages (rojo, run-in-roblox)
3737
run: foreman install
3838
- name: run rojo build
39-
run: rojo build -o .\\unit_tests.rbxlx
39+
run: rojo build -o .\\unit_tests.rbxlx .\\unit-testing.project.json
4040
- name: run tests
4141
run: run-in-roblox --place .\\unit_tests.rbxlx --script .\\spec.server.lua

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ npm i @rbxts/reverse-array
2626
### Wally
2727
[Wally](https://github.com/UpliftGames/wally/) users can install this package by adding the following line to their `Wally.toml` under `[dependencies]`:
2828
```
29-
ReverseArray = "bytebit/[email protected].0"
29+
ReverseArray = "bytebit/[email protected].1"
3030
```
3131

3232
Then just run `wally install`.

default.project.json

Lines changed: 13 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,15 @@
11
{
2-
"name": "test-rojo-proj",
3-
"tree": {
4-
"$className": "DataModel",
5-
"ReplicatedStorage": {
6-
"$className": "ReplicatedStorage",
7-
"rbxts_include": {
8-
"$path": "include",
9-
"node_modules": {
10-
"$path": "./node_modules/@rbxts"
11-
}
12-
},
13-
"out": {
14-
"$path": "./out"
15-
}
16-
},
17-
"ServerScriptService": {
18-
"$className": "ServerScriptService",
19-
"TestRunner": {
20-
"$path": "./spec.server.lua"
21-
}
22-
}
23-
}
2+
"name": "reverse-array",
3+
"tree": {
4+
"$className": "Folder",
5+
"out": {
6+
"$path": "out"
7+
},
8+
"node_modules": {
9+
"$className": "Folder",
10+
"@rbxts": {
11+
"$path": "node_modules/@rbxts"
12+
}
13+
}
14+
}
2415
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rbxts/reverse-array",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A simple function that just reverses any array given to it.",
55
"main": "out/init.lua",
66
"scripts": {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "functions/ReverseArray";
1+
export * from "./functions/ReverseArray";

tsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"forceConsistentCasingInFileNames": true,
1414
"strict": true,
1515
"target": "ESNext",
16-
"typeRoots": ["node_modules/@rbxts"],
17-
16+
"typeRoots": [
17+
"node_modules/@rbxts"
18+
],
1819
// configurable
1920
"rootDir": "src",
2021
"outDir": "out",
21-
"baseUrl": "src",
2222
"incremental": true,
2323
"tsBuildInfoFile": "out/tsconfig.tsbuildinfo",
2424
"declaration": true
2525
}
26-
}
26+
}

unit-testing.project.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "test-rojo-proj",
3+
"tree": {
4+
"$className": "DataModel",
5+
"ReplicatedStorage": {
6+
"$className": "ReplicatedStorage",
7+
"rbxts_include": {
8+
"$path": "include",
9+
"node_modules": {
10+
"$path": "./node_modules/@rbxts"
11+
}
12+
},
13+
"out": {
14+
"$path": "./out"
15+
}
16+
},
17+
"ServerScriptService": {
18+
"$className": "ServerScriptService",
19+
"TestRunner": {
20+
"$path": "./spec.server.lua"
21+
}
22+
}
23+
}
24+
}

wally.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ registry = "test"
44

55
[[package]]
66
name = "bytebit/reverse-array"
7-
version = "1.0.0"
7+
version = "1.0.1"
88
dependencies = []

0 commit comments

Comments
 (0)