Skip to content

Commit

Permalink
Merge branch 'simple-urls'
Browse files Browse the repository at this point in the history
  • Loading branch information
nickshine committed Apr 10, 2020
2 parents dfcd45c + 160484b commit dc2f542
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions build/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ function microsoftConfiguration() {
shell.cp('./authz/microsoft.js', './distributions/' + config.DISTRIBUTION + '/auth.js');
shell.cp('./authn/openid.index.js', './distributions/' + config.DISTRIBUTION + '/index.js');
shell.cp('./nonce.js', './distributions/' + config.DISTRIBUTION + '/nonce.js');
shell.cp('./simpleurl.js', './distributions/' + config.DISTRIBUTION + '/simpleurl.js');

fs.writeFileSync('distributions/' + config.DISTRIBUTION + '/config.json', JSON.stringify(result, null, 4));
writeConfig(config, zip, ['config.json', 'index.js', 'auth.js', 'nonce.js']);
Expand Down
2 changes: 1 addition & 1 deletion package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mkdir -p dist

cp ./authz/microsoft.js ./dist/auth.js
cp ./authn/openid.index.js ./dist/main.js
cp nonce.js package.json package-lock.json ./dist/
cp nonce.js simpleurl.js package.json package-lock.json ./dist/

cd dist
npm ci --production
Expand Down

0 comments on commit dc2f542

Please sign in to comment.