Skip to content

Commit 5316bef

Browse files
Update oidc-rp dependency to 0.2.0
1 parent e0ddfd1 commit 5316bef

File tree

3 files changed

+22
-11
lines changed

3 files changed

+22
-11
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"scripts": {
1414
"build": "npm run build-lib",
15-
"build-dist": "webpack --progress --colors --optimize-occurrence-order --optimize-dedupe --optimize-minimize",
15+
"build-dist": "webpack --progress --colors --optimize-minimize",
1616
"build-lib": "babel src -d lib",
1717
"dist": "npm run build && npm run build-dist",
1818
"mocha": "nyc mocha test/*.js",
@@ -56,23 +56,23 @@
5656
},
5757
"homepage": "https://github.com/solid/solid-auth-oidc",
5858
"dependencies": {
59-
"oidc-rp": "git://github.com/anvilresearch/oidc-rp.git#rc-004"
59+
"@trust/oidc-rp": "^0.2.0"
6060
},
6161
"devDependencies": {
62-
"babel-cli": "^6.18.0",
63-
"babel-core": "^6.21.0",
64-
"babel-loader": "^6.2.5",
65-
"babel-preset-es2015": "^6.18.0",
62+
"babel-cli": "^6.24.1",
63+
"babel-core": "^6.24.1",
64+
"babel-loader": "^7.0.0",
65+
"babel-preset-es2015": "^6.24.1",
6666
"chai": "^3.5.0",
6767
"chai-as-promised": "^6.0.0",
6868
"dirty-chai": "^1.2.2",
6969
"localstorage-polyfill": "^1.0.1",
70-
"mocha": "^3.2.0",
70+
"mocha": "^3.3.0",
7171
"nyc": "^10.2.0",
7272
"sinon": "^2.1.0",
7373
"sinon-chai": "^2.9.0",
74-
"standard": "^9.0.2",
75-
"webpack": "^1.14.0"
74+
"standard": "^10.0.2",
75+
"webpack": "^2.5.1"
7676
},
7777
"standard": {
7878
"globals": [

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
https://github.com/solid/solid
2626
*/
2727
'use strict'
28-
const RelyingParty = require('oidc-rp')
28+
const RelyingParty = require('@trust/oidc-rp')
2929
const providerSelectPopupSource = require('./provider-select-popup')
3030

3131
// URI parameter types

webpack.config.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,22 @@ module.exports = {
1010
library: 'SolidAuthOIDC',
1111
libraryTarget: 'var'
1212
},
13+
module: {
14+
loaders: [
15+
{
16+
test: /\.js$/,
17+
loader: 'babel-loader',
18+
query: {
19+
presets: ['es2015']
20+
}
21+
}
22+
]
23+
},
1324
externals: {
1425
'node-fetch': 'fetch',
1526
'text-encoding': 'TextEncoder',
1627
'urlutils': 'URL',
17-
'webcrypto': 'crypto'
28+
'@trust/webcrypto': 'crypto'
1829
},
1930
devtool: 'source-map'
2031
}

0 commit comments

Comments
 (0)