@massif/lancer-data 3.1.1 → 3.1.2
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/.github/workflows/deploy-npm.yml +14 -0
- package/.github/workflows/lcp-version-bump.yml +22 -0
- package/README.md +1 -1
- package/lib/actions.json +463 -463
- package/lib/frames.json +1844 -1844
- package/lib/glossary.json +157 -157
- package/lib/mods.json +8 -8
- package/lib/skills.json +155 -155
- package/lib/statuses.json +110 -110
- package/lib/systems.json +104 -104
- package/lib/weapons.json +56 -56
- package/package.json +3 -2
- package/scripts/test.js +19 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# This workflow will call org-level reusable workflows for deploying an NPM package to npmjs.com.
|
|
2
|
+
|
|
3
|
+
name: Deploy NPM
|
|
4
|
+
|
|
5
|
+
on:
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
release:
|
|
8
|
+
types: [created]
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
call-npm-publish:
|
|
12
|
+
uses: massif-press/.github/.github/workflows/npm-publish.yml@master
|
|
13
|
+
secrets:
|
|
14
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# This workflow calls an org-level reusable workflow for incrementing LCP and NPM package versions.
|
|
2
|
+
|
|
3
|
+
name: LCP Version Bump
|
|
4
|
+
|
|
5
|
+
on:
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
inputs:
|
|
8
|
+
version_level:
|
|
9
|
+
description: 'Version level to bump'
|
|
10
|
+
required: true
|
|
11
|
+
default: 'patch'
|
|
12
|
+
type: choice
|
|
13
|
+
options:
|
|
14
|
+
- patch
|
|
15
|
+
- minor
|
|
16
|
+
- major
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
call-bump-version-tag:
|
|
20
|
+
uses: massif-press/.github/.github/workflows/bump-version-tag.yml@master
|
|
21
|
+
with:
|
|
22
|
+
version_level: ${{ inputs.version_level }}
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# !! IMPORTANT !!
|
|
2
2
|
|
|
3
|
-
The `lancer-data` package is
|
|
3
|
+
The `lancer-data` npm package is now available under `@massif/lancer-data`. The `lancer-data` package will no longer be updated, and will be removed in the future. Please update your dependencies accordingly. It is published from this repo, so everything else will stay the same otherwise.
|
|
4
4
|
|
|
5
5
|
# About
|
|
6
6
|
|