@quenty/nevermore-cli 1.4.0 → 1.5.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,6 +3,17 @@
|
|
|
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
|
+
# [1.5.0](https://github.com/Quenty/Nevermore/compare/@quenty/nevermore-cli@1.4.0...@quenty/nevermore-cli@1.5.0) (2023-02-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Add github workflow to nevermore init command ([8369044](https://github.com/Quenty/Nevermore/commit/83690442c0914ed8b766348f12f79ea233dae3aa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [1.4.0](https://github.com/Quenty/Nevermore/compare/@quenty/nevermore-cli@1.3.0...@quenty/nevermore-cli@1.4.0) (2023-02-21)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/nevermore-cli
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/nevermore-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "CLI interface for Nevermore",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=16"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "68550b6bb9b0280b7f825ae7dea41bdb3d52ce52"
|
|
55
55
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name: build
|
|
2
|
+
on: [push]
|
|
3
|
+
jobs:
|
|
4
|
+
lint:
|
|
5
|
+
runs-on: ubuntu-latest
|
|
6
|
+
steps:
|
|
7
|
+
- name: Checkout repository
|
|
8
|
+
uses: actions/checkout@v2
|
|
9
|
+
|
|
10
|
+
- name: Setup Aftman
|
|
11
|
+
uses: ok-nick/setup-aftman@v0.3.0
|
|
12
|
+
with:
|
|
13
|
+
version: 'v0.2.7'
|
|
14
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
15
|
+
|
|
16
|
+
- name: Generate standard library
|
|
17
|
+
run: selene generate-roblox-std
|
|
18
|
+
|
|
19
|
+
- name: Run Selene
|
|
20
|
+
run: selene src
|
|
21
|
+
|
|
22
|
+
- name: Run moonwave-extractor
|
|
23
|
+
if: success() || failure()
|
|
24
|
+
run: moonwave-extractor extract src
|