Skip to content

Commit

Permalink
20180809 deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
slogsdon committed Aug 9, 2018
1 parent fdda89f commit 6743dc3
Show file tree
Hide file tree
Showing 34 changed files with 589 additions and 852 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@ jspm_packages

# Optional REPL history
.node_repl_history

# ignore generated declaration files
types/*
!types/global-type.d.ts
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.rpt2_cache/
.vscode/
lib/
!lib/src
src/
test/
!types/
tsconfig.json
tslint.json
yarn.lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This plugin allows you to use either Heartland eCommerce or Global Payments eCom
## Usage

```html
<script src="https://api2-c.heartlandportico.com/SecureSubmit.v1/token/gp-1.0.1/globalpayments.js"></script>
<script src="https://api2-c.heartlandportico.com/SecureSubmit.v1/token/gp-1.0.2/globalpayments.js"></script>
```

### Configuration
Expand Down
3 changes: 2 additions & 1 deletion config/rollup.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import commonjs from "rollup-plugin-commonjs";
import resolve from "rollup-plugin-node-resolve";
import typescript from "rollup-plugin-typescript2";
import uglify from "rollup-plugin-uglify";
import { uglify } from "rollup-plugin-uglify";

const input = "./src/index.ts";

Expand All @@ -15,6 +15,7 @@ const plugins = [
typescript({
check: true,
typescript: require("typescript"),
useTsconfigDeclarationDir: true,
}),
];

Expand Down
6 changes: 3 additions & 3 deletions cypress.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"fixturesFolder": "test/fixtures",
"integrationFolder": "test/integration",
"pluginsFile": "test/plugins",
"screenshotOnHeadlessFailure": false,
"screenshotsFolder": "test/screenshots",
"supportFile": "test/support",
"videoRecording": false,
"videosFolder": "test/videos"
"video": false,
"videosFolder": "test/videos",
"chromeWebSecurity": false
}
Loading

0 comments on commit 6743dc3

Please sign in to comment.