Skip to content

Commit

Permalink
cleans adapter import paths
Browse files Browse the repository at this point in the history
expose seperated import paths
  • Loading branch information
Gabriel Grinberg authored Sep 26, 2018
2 parents f315f80 + 5993142 commit 03f074e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
node_modules
dist
npm-debug.log
package-lock.json
/*.js
/*.d.ts
!wallaby.js
!protractor.conf.js
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && (tsc -p . || true) && npm run build-testsuite",
"build": "rm -rf dist && (tsc -p . || true) && npm run build-testsuite && npm run expose-adapters",
"build-testsuite": "cp src/test-suite/index.ejs dist/test-suite/index.ejs && browserify dist/test-suite/app.js > dist/test-suite/bundle.js",
"testsuite-server": "node dist/test-suite/server.js",
"test": "bash support/test.sh"
"test": "bash support/test.sh",
"expose-adapters": "import-path --path lib --dts"
},
"author": "Wix.com",
"license": "MIT",
Expand All @@ -28,6 +29,7 @@
"concurrently": "^3.5.1",
"ejs": "^2.5.7",
"express": "^4.16.2",
"import-path": "^1.0.3",
"jsdom": "^11.10.0",
"jsdom-global": "^3.0.2",
"mocha": "^4.1.0",
Expand Down

0 comments on commit 03f074e

Please sign in to comment.