Skip to content

Commit 7eb1f42

Browse files
feat(storefront): support storefront (#73)
BREAKING CHANGE: removed flux-capacitor from the repository flux-capacitor has been moved to https://github.com/groupby/flux-capacitor
1 parent 7036b62 commit 7eb1f42

40 files changed

Lines changed: 2509 additions & 3616 deletions

.circleci/config.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2
2+
3+
jobs:
4+
build:
5+
working_directory: ~/api-javascript
6+
docker:
7+
- image: kkarczmarczyk/node-yarn
8+
steps:
9+
- checkout
10+
- restore_cache:
11+
key: api-javascript-{{ .Branch }}-{{ checksum "yarn.lock" }}
12+
- run:
13+
name: Install
14+
command: yarn
15+
- save_cache:
16+
key: api-javascript-{{ .Branch }}-{{ checksum "yarn.lock" }}
17+
paths:
18+
- ~/node_modules
19+
- run:
20+
name: Test
21+
command: yarn start ci
22+
- run:
23+
name: Release
24+
command: yarn start release || true

.codeclimate.yml

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

.editorconfig

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
# EditorConfig helps developers define and maintain consistent
2-
# coding styles between different editors and IDEs
3-
# editorconfig.org
4-
51
root = true
62

73
[*]
8-
9-
# Change these settings to your own preference
104
indent_style = space
115
indent_size = 2
12-
13-
# We recommend you to keep these unchanged
146
end_of_line = lf
157
charset = utf-8
168
trim_trailing_whitespace = true

.eslintrc.yml

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

.gb-release.yml

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

.gitattributes

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

.gitignore

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
.vscode/launch.json
2-
.DS_Store
3-
.tmp
4-
.idea
5-
tmp
6-
node_modules
7-
npm-debug.log
8-
typings
9-
src/**/*.js*
10-
test/**/*.js*
11-
coverage
12-
dist
13-
docs
1+
node_modules/
2+
dist/
3+
esnext/
4+
bundle/
5+
coverage/
6+
typings/
7+
.scratch/
8+
src/**/*.js
9+
src/**/*.d.ts
10+
test/**/*.js
11+
test/**/*.d.ts
12+
13+
*.log

.npmignore

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

circle.yml

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

custom_typings/filter-object.d.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
declare module 'filter-object' {
2+
3+
interface FilterOptions {
4+
keys?: string[];
5+
sort?: (key1: string, key2: string) => number;
6+
sortOrder?: 'asc' | 'desc' | 'ASC' | 'DESC' | string;
7+
sortBy?: (obj: any) => string[];
8+
}
9+
interface FilterObject {
10+
(obj: any, globs: string | string[], opts?: FilterOptions): any;
11+
(obj: any, filter: Function, opts?: FilterOptions): any;
12+
}
13+
14+
const filterObject: FilterObject;
15+
16+
export = filterObject;
17+
}

0 commit comments

Comments
 (0)