Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sometimeskind committed May 16, 2018
1 parent 5c2b24b commit 842b290
Show file tree
Hide file tree
Showing 49 changed files with 21,062 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"presets": [
["env", { "targets": { "browsers": [">0.25%", "not ie 11", "not op_mini all"] } }],
"flow",
],
"plugins": ["transform-object-rest-spread", "transform-async-generator-functions", "transform-class-properties", "transform-runtime", ["transform-builtin-extend", { "globals": ["Error"] }]]
}
7 changes: 7 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules/
.git/
dist/
flow-typed/
.nyc_output/
coverage/
es5/
26 changes: 26 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
extends: ['airbnb-base', 'plugin:flowtype/recommended'],
parser: 'babel-eslint',
'plugins': ['flowtype'],
parserOptions: {
ecmaFeatures: {
experimentalObjectRestSpread: true
}
},
settings: {
'import/resolver': 'webpack',
},
globals: {
SyntheticInputEvent: true,
},
rules: {
'no-console': 2,
'id-length': 0,
'max-len': 0,
'no-underscore-dangle': 0,
'import/extensions': 0,
'arrow-parens': ['error', 'always'],
'import/prefer-default-export': 0,
'no-unused-vars': ["error", { "argsIgnorePattern": "^_" }],
},
};
3 changes: 3 additions & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[options]
suppress_comment=\\(.\\|\n\\)*\\$ExpectError
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
dist/
.nyc_output/
coverage/
es5/
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
.nyc_output/
coverage/
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://registry.npmjs.org
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8.9
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: node_js
install: npm i
script: npm run ci
deploy:
- provider: releases
api_key: $GITHUB_TOKEN
skip_cleanup: true
on:
tags: true
repo: tomruttle/am-path-helpers
all_branches: true
- provider: npm
email: tom@tomruttle.com
api_key: $NPM_TOKEN
skip_cleanup: true
on:
tags: true
repo: tomruttle/am-path-helpers
all_branches: true
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[![Build Status](https://travis-ci.org/tomruttle/am-path-helpers.svg?branch=master)](https://travis-ci.org/tomruttle/am-path-helpers)

# am-path-helpers

Helpers for [App Manager](https://github.com/tomruttle/app-manager) that provide enhanced tools for path matching
108 changes: 108 additions & 0 deletions flow-typed/npm/babel-cli_vx.x.x.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
// flow-typed signature: 3261ec1827a01f55944b9b3522c93f69
// flow-typed version: <<STUB>>/babel-cli_v^6.26.0/flow_v0.72.0

/**
* This is an autogenerated libdef stub for:
*
* 'babel-cli'
*
* Fill this stub out by replacing all the `any` types.
*
* Once filled out, we encourage you to share your work with the
* community by sending a pull request to:
* https://github.com/flowtype/flow-typed
*/

declare module 'babel-cli' {
declare module.exports: any;
}

/**
* We include stubs for each file inside this npm package in case you need to
* require those files directly. Feel free to delete any files that aren't
* needed.
*/
declare module 'babel-cli/bin/babel-doctor' {
declare module.exports: any;
}

declare module 'babel-cli/bin/babel-external-helpers' {
declare module.exports: any;
}

declare module 'babel-cli/bin/babel-node' {
declare module.exports: any;
}

declare module 'babel-cli/bin/babel' {
declare module.exports: any;
}

declare module 'babel-cli/lib/_babel-node' {
declare module.exports: any;
}

declare module 'babel-cli/lib/babel-external-helpers' {
declare module.exports: any;
}

declare module 'babel-cli/lib/babel-node' {
declare module.exports: any;
}

declare module 'babel-cli/lib/babel/dir' {
declare module.exports: any;
}

declare module 'babel-cli/lib/babel/file' {
declare module.exports: any;
}

declare module 'babel-cli/lib/babel/index' {
declare module.exports: any;
}

declare module 'babel-cli/lib/babel/util' {
declare module.exports: any;
}

// Filename aliases
declare module 'babel-cli/bin/babel-doctor.js' {
declare module.exports: $Exports<'babel-cli/bin/babel-doctor'>;
}
declare module 'babel-cli/bin/babel-external-helpers.js' {
declare module.exports: $Exports<'babel-cli/bin/babel-external-helpers'>;
}
declare module 'babel-cli/bin/babel-node.js' {
declare module.exports: $Exports<'babel-cli/bin/babel-node'>;
}
declare module 'babel-cli/bin/babel.js' {
declare module.exports: $Exports<'babel-cli/bin/babel'>;
}
declare module 'babel-cli/index' {
declare module.exports: $Exports<'babel-cli'>;
}
declare module 'babel-cli/index.js' {
declare module.exports: $Exports<'babel-cli'>;
}
declare module 'babel-cli/lib/_babel-node.js' {
declare module.exports: $Exports<'babel-cli/lib/_babel-node'>;
}
declare module 'babel-cli/lib/babel-external-helpers.js' {
declare module.exports: $Exports<'babel-cli/lib/babel-external-helpers'>;
}
declare module 'babel-cli/lib/babel-node.js' {
declare module.exports: $Exports<'babel-cli/lib/babel-node'>;
}
declare module 'babel-cli/lib/babel/dir.js' {
declare module.exports: $Exports<'babel-cli/lib/babel/dir'>;
}
declare module 'babel-cli/lib/babel/file.js' {
declare module.exports: $Exports<'babel-cli/lib/babel/file'>;
}
declare module 'babel-cli/lib/babel/index.js' {
declare module.exports: $Exports<'babel-cli/lib/babel/index'>;
}
declare module 'babel-cli/lib/babel/util.js' {
declare module.exports: $Exports<'babel-cli/lib/babel/util'>;
}
Loading

0 comments on commit 842b290

Please sign in to comment.