@quenty/sprites 3.0.1-canary.9c1fd3b.0 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,9 +3,24 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [3.0.1-canary.9c1fd3b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sprites@3.0.0...@quenty/sprites@3.0.1-canary.9c1fd3b.0) (2021-09-11)
6
+ # [3.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sprites@3.0.1...@quenty/sprites@3.1.0) (2021-09-22)
7
7
 
8
- **Note:** Version bump only for package @quenty/sprites
8
+
9
+ ### Bug Fixes
10
+
11
+ * Make sure sprites have all dependencies listed ([fbfe3c2](https://github.com/Quenty/NevermoreEngine/commit/fbfe3c2474c48b25957cac813892aa17d1caa72b))
12
+
13
+
14
+
15
+
16
+
17
+ ## [3.0.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sprites@3.0.0...@quenty/sprites@3.0.1) (2021-09-18)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * Allow stories to be loaded into the actual package in question ([941348a](https://github.com/Quenty/NevermoreEngine/commit/941348a6e59742adf4f3824403814679964ad87e))
23
+ * Fix undeclare package dependencies that prevented loading in certain situations ([a8be7e0](https://github.com/Quenty/NevermoreEngine/commit/a8be7e06a06506a71257862429934e2ed0f6f56b))
9
24
 
10
25
 
11
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/sprites",
3
- "version": "3.0.1-canary.9c1fd3b.0",
3
+ "version": "3.1.0",
4
4
  "description": "Spritesheet utility for Roblox including a built-in InputImageLibrary",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,12 +26,16 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/baseobject": "3.0.1-canary.9c1fd3b.0",
30
- "@quenty/loader": "3.0.1-canary.9c1fd3b.0",
31
- "@quenty/maid": "2.0.1-canary.9c1fd3b.0"
29
+ "@quenty/baseobject": "^3.0.1",
30
+ "@quenty/loader": "^3.0.1",
31
+ "@quenty/maid": "^2.0.0",
32
+ "@quenty/uiobjectutils": "^2.0.0"
33
+ },
34
+ "devDependencies": {
35
+ "@quenty/string": "^2.1.0"
32
36
  },
33
37
  "publishConfig": {
34
38
  "access": "public"
35
39
  },
36
- "gitHead": "9c1fd3b43a16f8bc00caafbbb3f7092b4e5cc9eb"
40
+ "gitHead": "6288c63115f31544fce6663d018826e81ef01c7f"
37
41
  }
@@ -2,7 +2,7 @@
2
2
  -- @module DialogSlider.story
3
3
  -- @author Quenty
4
4
 
5
- local require = require(game:GetService("ReplicatedStorage"):WaitForChild("Nevermore"))
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
6
6
 
7
7
  local InputImageLibrary = require("InputImageLibrary")
8
8
  local Maid = require("Maid")
@@ -2,7 +2,7 @@
2
2
  -- @module DialogSlider.story
3
3
  -- @author Quenty
4
4
 
5
- local require = require(game:GetService("ReplicatedStorage"):WaitForChild("Nevermore"))
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
6
6
 
7
7
  local AnimatedSpritesheet = require("AnimatedSpritesheet")
8
8
  local AnimatedSpritesheetPlayer = require("AnimatedSpritesheetPlayer")