Skip to content

Commit aad295e

Browse files
committed
Add roslib prebuilt for coalescing thing ??
1 parent e0714e3 commit aad295e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+15775
-1286
lines changed

.github/workflows/build.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Node.js Build
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Node.js
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: 'current'
19+
check-latest: true
20+
21+
- name: Install dependencies
22+
run: |
23+
cd vue-frontend
24+
npm install
25+
- name: Run build
26+
run: |
27+
cd vue-frontend
28+
npm run build
29+
30+
# - name: Run tests
31+
# run: npm test

vue-frontend/babel.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
plugins: [
3+
['@babel/plugin-proposal-nullish-coalescing-operator'],
4+
['@babel/plugin-proposal-optional-chaining']
5+
]
6+
}

0 commit comments

Comments
 (0)