initial commit
This commit is contained in:
23
.changelog_template.hbs
Normal file
23
.changelog_template.hbs
Normal file
@@ -0,0 +1,23 @@
|
||||
### Changelog
|
||||
|
||||
{{#each releases}}
|
||||
{{#if href}}
|
||||
{{#if major}}
|
||||
### [{{title}}]({{href}}) ({{niceDate}})
|
||||
{{else}}
|
||||
#### [{{title}}]({{href}}) ({{niceDate}})
|
||||
{{/if}}
|
||||
{{else}}
|
||||
#### {{title}} ({{niceDate}})
|
||||
{{/if}}
|
||||
{{#each merges}}
|
||||
- {{message}}{{#if href}} [`#{{id}}`]({{href}}){{/if}}
|
||||
{{/each}}
|
||||
{{#each fixes}}
|
||||
- {{commit.subject}}{{#each fixes}}{{#if href}} [`#{{id}}`]({{href}}){{/if}}{{/each}}
|
||||
{{/each}}
|
||||
{{#each commits}}
|
||||
- {{#matches message "BREAKING CHANGE"}}**Breaking:** {{/matches}}{{subject}}{{#if href}} [`{{shorthash}}`]({{href}}){{/if}}
|
||||
{{/each}}
|
||||
|
||||
{{/each}}
|
||||
9
.dockerignore
Normal file
9
.dockerignore
Normal file
@@ -0,0 +1,9 @@
|
||||
node_modules
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
.env
|
||||
.vscode
|
||||
coverage
|
||||
.nyc_output
|
||||
coverage.lcov
|
||||
.env
|
||||
40
.eslintrc
Normal file
40
.eslintrc
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 8,
|
||||
"sourceType": "module"
|
||||
},
|
||||
"extends": [
|
||||
"airbnb",
|
||||
"prettier"
|
||||
],
|
||||
"plugins": [
|
||||
"prettier",
|
||||
"import"
|
||||
],
|
||||
"rules": {
|
||||
"prettier/prettier": "error",
|
||||
"import/no-extraneous-dependencies": [
|
||||
"error", {
|
||||
"devDependencies": [
|
||||
"test/**",
|
||||
"packages/**/test/**",
|
||||
"packages/**/*.test.js"
|
||||
],
|
||||
"optionalDependencies": false,
|
||||
"peerDependencies": false
|
||||
}
|
||||
],
|
||||
"import/order": [
|
||||
"error", {
|
||||
"groups": [
|
||||
"builtin",
|
||||
"external",
|
||||
"internal",
|
||||
"parent",
|
||||
"sibling",
|
||||
"index"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
11
.gitignore
vendored
Normal file
11
.gitignore
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
node_modules
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
.DS_Store
|
||||
.*.swp
|
||||
.vscode
|
||||
.env
|
||||
coverage
|
||||
.nyc_output
|
||||
coverage.lcov
|
||||
/lib
|
||||
20
.travis.yml
Normal file
20
.travis.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
language: node_js
|
||||
|
||||
node_js:
|
||||
- "stable"
|
||||
- "8"
|
||||
|
||||
cache:
|
||||
directories:
|
||||
- node_modules
|
||||
|
||||
notifications:
|
||||
email:
|
||||
on_success: never
|
||||
on_failure: change
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
- /^v[0-9].*$/
|
||||
|
||||
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
# Build node app in full node container
|
||||
FROM node:8
|
||||
|
||||
# install/build node modules, with full c build chain
|
||||
WORKDIR /build
|
||||
RUN npm install -g yarn
|
||||
COPY package.json yarn.lock ./
|
||||
RUN yarn install
|
||||
|
||||
# distribute much smaller alpine image
|
||||
FROM node:8-alpine
|
||||
WORKDIR /app
|
||||
VOLUME /app/data
|
||||
COPY --from=0 /build .
|
||||
COPY . .
|
||||
ENTRYPOINT ["yarn", "start"]
|
||||
21
LICENSE
Normal file
21
LICENSE
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2018 Joe Fleming (https://github.com/w33ble)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
11
README.md
Normal file
11
README.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# adsb-index
|
||||
|
||||
ADS-B indexing script.
|
||||
|
||||
[](https://raw.githubusercontent.com/w33ble/adsb-index/master/LICENSE)
|
||||
[](https://www.npmjs.com/package/adsb-index)
|
||||
[](https://nodejs.org/api/documentation.html#documentation_stability_index)
|
||||
|
||||
#### License
|
||||
|
||||
MIT © [w33ble](https://github.com/w33ble)
|
||||
5
index.js
Normal file
5
index.js
Normal file
@@ -0,0 +1,5 @@
|
||||
/* eslint no-global-assign: 0 */
|
||||
require = require('esm')(module);
|
||||
const mod = require('./src/index.mjs').default;
|
||||
|
||||
module.exports = mod;
|
||||
3
index.mjs
Normal file
3
index.mjs
Normal file
@@ -0,0 +1,3 @@
|
||||
import mod from './src/index.mjs';
|
||||
|
||||
export default mod;
|
||||
68
package.json
Normal file
68
package.json
Normal file
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"name": "adsb-index",
|
||||
"version": "0.0.0",
|
||||
"description": "ADS-B indexing script",
|
||||
"main": "index",
|
||||
"module": "index.mjs",
|
||||
"scripts": {
|
||||
"lint": "eslint '*.{js,mjs}' 'src/**/*.{js,mjs}'",
|
||||
"precommit": "lint-staged",
|
||||
"version": "npm-auto-version",
|
||||
"start": "node ."
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/w33ble/adsb-index.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"files": [
|
||||
"src/",
|
||||
"index.js",
|
||||
"index.mjs",
|
||||
"CHANGELOG.md",
|
||||
"AUTHORS.md"
|
||||
],
|
||||
"author": "Joe Fleming (https://github.com/w33ble)",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/w33ble/adsb-index/issues"
|
||||
},
|
||||
"homepage": "https://github.com/w33ble/adsb-index",
|
||||
"lint-staged": {
|
||||
"ignore": [
|
||||
"package.json"
|
||||
],
|
||||
"linters": {
|
||||
"*.{js,mjs}": [
|
||||
"eslint --fix"
|
||||
],
|
||||
"*.{js,mjs,json,css}": [
|
||||
"prettier --write"
|
||||
]
|
||||
}
|
||||
},
|
||||
"prettier": {
|
||||
"printWidth": 100,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "es5"
|
||||
},
|
||||
"esm": {
|
||||
"cjs": true
|
||||
},
|
||||
"dependencies": {
|
||||
"esm": "^3.0.17"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@w33ble/npm-auto-tools": "*",
|
||||
"eslint": "^4.9.0",
|
||||
"eslint-config-prettier": "^2.9.0",
|
||||
"eslint-plugin-prettier": "^2.3.1",
|
||||
"eslint-plugin-import": "^2.7.0",
|
||||
"husky": "^0.14.3",
|
||||
"lint-staged": "^7.0.4",
|
||||
"eslint-config-airbnb": "^16.1.0",
|
||||
"eslint-plugin-jsx-a11y": "^6.0.2",
|
||||
"eslint-plugin-react": "^7.1.0",
|
||||
"prettier": "^1.9.0"
|
||||
}
|
||||
}
|
||||
3
src/index.mjs
Normal file
3
src/index.mjs
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function() {
|
||||
// es6 module code goes here
|
||||
}
|
||||
Reference in New Issue
Block a user