Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9fbb445
removing local directory
nicreuss Jan 9, 2022
f3199e6
adding submodule
nicreuss Jan 9, 2022
188772c
rename usb submodule
nicreuss Jan 9, 2022
2371e5a
init xpack
nicreuss Feb 19, 2022
7ea7495
publish action
nicreuss Feb 19, 2022
554b0bd
xpack 0.1.1 speed improvement attempt
nicreuss Feb 19, 2022
f1cb990
fix broken url
nicreuss Feb 19, 2022
ee30e5e
release 0.1.2
nicreuss Feb 19, 2022
521f03b
release 0.1.3
nicreuss Feb 19, 2022
b5eea88
update pipeline for submodules
nicreuss Feb 19, 2022
5b387cc
Merge tag 'v1.13.2'
nicreuss Mar 29, 2022
668bf43
Merge branch 'main' into xpack
nicreuss Mar 29, 2022
6e8bebb
Release v0.1.4-s1.13.2
nicreuss Mar 29, 2022
ebc18b1
Merge remote-tracking branch 'origin/STMicroelectronics-STM32CubeWB-m…
nicreuss Jun 5, 2022
d95b13b
update usb library to v2.11.0
nicreuss Jun 5, 2022
30802df
Merge branch 'main' into xpack
nicreuss Jun 5, 2022
e0c4add
v0.1.5-s1.13.3
nicreuss Jun 5, 2022
f611a02
Merge remote-tracking branch 'upstream/master'
nicreuss Jul 8, 2022
7bda8fa
Merge branch 'main' into xpack
nicreuss Jul 8, 2022
d0d28d2
xpack v0.2.0-s1.14.0
nicreuss Jul 8, 2022
99c0cb8
Merge tag 'v1.14.1'
nicreuss Sep 11, 2022
8de57ba
Merge branch 'main' into xpack
nicreuss Sep 11, 2022
7f9c808
xpack v0.2.1-s1.14.1
nicreuss Sep 13, 2022
815ece2
update usb library to v2.11.1
nicreuss Oct 23, 2022
f392d20
Merge remote-tracking branch 'upstream/master'
nicreuss Oct 23, 2022
77685a6
Merge branch 'main' into xpack
nicreuss Oct 23, 2022
75e2328
xpack v0.2.2-s1.2.7
nicreuss Oct 23, 2022
48acd1e
update github actions versions
nicreuss Oct 23, 2022
979b6dd
Merge branch 'main' into xpack
nicreuss Dec 17, 2022
3913c44
remove submodule
nicreuss Dec 17, 2022
5265d01
Release v1.15.0
ALABSTM Nov 30, 2022
c89e466
remove STMicroelectronics github config
nicreuss Dec 17, 2022
52c31b4
update xpm
nicreuss Dec 18, 2022
60296b9
Merge branch 'main' into xpack
nicreuss Dec 18, 2022
c19270b
xpack v0.3.1-s1.15.0
nicreuss Dec 18, 2022
36e0c92
add back missing items for codegen to xpack
nicreuss Dec 18, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/xpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish xPack Package
on:
push:
tags:
- 'xpack-v[0-9]+.[0-9]+.[0-9]+*'

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
15 changes: 15 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.npmignore

.github/
Documentation/
Projects/
Utilities/Media/
Utilities/PC_Software
*.md

**/_htmresc/
**/html/
**/ReleaseNotes.html
**/Release_Notes.html
**/docs/
**/doc/
30 changes: 30 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "@displode/stm32cubewb-xpack",
"version": "0.3.2-s1.15.0",
"description": "A source xPack for STM32CubeWB",
"main": "",
"repository": "github:displode/stm32cubewb",
"bugs": {
"url": "https://github.com/displode/stm32cubewb/issues"
},
"homepage": "https://github.com/displode/stm32cubewb",
"keywords": [
"xpack"
],
"author": {
"name": "displode",
"email": "info@displode.com",
"url": "https://github.com/displode"
},
"contributors": [
{
"name": "STMicroelectronics",
"url": "https://github.com/STMicroelectronics/STM32CubeWB"
}
],
"license": "LICENSE.md",
"xpack": {
"minimumXpmRequired": "0.14.0"
},
"files": ["*"]
}