Skip to content
This repository was archived by the owner on Aug 10, 2025. It is now read-only.

Commit 3f2bf84

Browse files
authored
Merge pull request #5 from dmackca/feature/biliBuild
use bili for bundling, add eslint
2 parents 3a6a3e6 + 71b4a8d commit 3f2bf84

20 files changed

+4706
-3350
lines changed

.babelrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

.editorconfig

Lines changed: 0 additions & 9 deletions
This file was deleted.

.eslintrc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
extends: [
3+
'foundryspatial',
4+
],
5+
rules: {
6+
'arrow-body-style': 'off',
7+
}
8+
}

.github/workflows/node-tests.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Node.js yarn CI
2+
3+
on:
4+
push:
5+
branches: [ '**' ]
6+
pull_request:
7+
branches: [ '**' ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [10.x, 12.x]
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
- uses: Borales/actions-yarn@v2.1.0
21+
with:
22+
cmd: install # will run `yarn install` command
23+
- uses: Borales/actions-yarn@v2.1.0
24+
with:
25+
cmd: lint # will run `yarn build` command
26+
- uses: Borales/actions-yarn@v2.1.0
27+
with:
28+
cmd: build # will run `yarn build` command
29+
- uses: Borales/actions-yarn@v2.1.0
30+
with:
31+
cmd: test # will run `yarn test` command

.gitignore

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
.DS_Store
21
node_modules/
32
npm-debug.log
43
yarn-error.log
5-
6-
# Editor directories and files
7-
.idea
8-
*.suo
9-
*.ntvs*
10-
*.njsproj
11-
*.sln

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Use [version 1 of this package](https://www.npmjs.com/package/vue-filter-number-
1212
## Suggested usage
1313

1414
Pass in Numeral to create the formatter function, and register globally as a Vue filter in your main.js-ish file:
15-
15+
@TODO: update this
1616
```js
1717
import numeral from 'numeral';
1818
import numFormat from 'vue-filter-number-format';

dist/vue-filter-number-format.esm.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-filter-number-format.esm.min.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-filter-number-format.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

dist/vue-filter-number-format.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)