@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.
@@ -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 no longer the current source of COMP/CON data, and 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.
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