Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: adds exports block #157

Merged
merged 3 commits into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 6.5.0

### Fixes

- [#157](https://github.com/okta/okta-angular/pull/157) fix: adds `exports` block to `package.json` to support modern build tooling, like `vite`

# 6.4.0

### Fixes
Expand Down
14 changes: 13 additions & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@okta/okta-angular",
"version": "6.4.0",
"version": "6.5.0",
"description": "Angular support for Okta",
"repository": "https://github.com/okta/okta-angular",
"homepage": "https://github.com/okta/okta-angular",
Expand All @@ -12,6 +12,18 @@
"auth",
"oauth2"
],
"exports": {
".": {
"es2015": "./fesm2015/okta-okta-angular.js",
"esm2015": "./esm2015/okta-okta-angular.js",
"node": "./fesm2015/okta-okta-angular.js",
"default": "./fesm2015/okta-okta-angular.js",
"types": "./okta-okta-angular.d.ts"
},
"./package.json": {
"default": "./package.json"
}
},
"license": "Apache-2.0",
"type": "module",
"dependencies": {
Expand Down
7 changes: 6 additions & 1 deletion scripts/e2e-v6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ ! -z "$AUTHJS_VERSION" ]; then
fi

setup_service java 1.8.222
setup_service google-chrome-stable 106.0.5249.61-1
setup_service google-chrome-stable 121.0.6167.85-1

export AUTHJS_VERSION_6="true"
export TEST_SUITE_TYPE="junit"
Expand Down Expand Up @@ -38,6 +38,11 @@ do
popd
done

if [ -z "${PASSWORD}" ]; then
echo "No PASSWORD has been set! Exiting..."
exit ${TEST_FAILURE}
fi

if ! yarn test:e2e; then
echo "unit failed! Exiting..."
exit ${TEST_FAILURE}
Expand Down
7 changes: 6 additions & 1 deletion scripts/e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source ${OKTA_HOME}/${REPO}/scripts/setup-e2e.sh

setup_service java 1.8.222
setup_service google-chrome-stable 106.0.5249.61-1
setup_service google-chrome-stable 121.0.6167.85-1

export TEST_SUITE_TYPE="junit"
export TEST_RESULT_FILE_DIR="${REPO}/test-reports/e2e"
Expand All @@ -27,6 +27,11 @@ do
popd
done

if [ -z "${PASSWORD}" ]; then
echo "No PASSWORD has been set! Exiting..."
exit ${TEST_FAILURE}
fi

# Run e2e tests
if ! yarn test:e2e; then
echo "unit failed! Exiting..."
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ install_auth_js () {

# Install required node version
export NVM_DIR="/root/.nvm"
setup_service node v16.14.0
setup_service node v16.18.1
setup_service python 3.6

# Install yarn
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ install_auth_js () {

# Install required node version
export NVM_DIR="/root/.nvm"
setup_service node v16.14.0
setup_service node v16.18.1

# Install yarn
# Use the cacert bundled with centos as okta root CA is self-signed and cause issues downloading from yarn
Expand Down
2 changes: 1 addition & 1 deletion test/apps/angular-v12/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.17",
"@angular-builders/jest": "^12.1.2",
"@angular-devkit/build-angular": "~12.2.17",
"@angular/cli": "~12.2.17",
"@angular/compiler-cli": "~12.2.17",
"@types/jest": "^29.2.3",
Expand Down
2 changes: 1 addition & 1 deletion test/apps/angular-v13/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.0.3",
"@angular-builders/jest": "^13.0.4",
"@angular-devkit/build-angular": "~13.0.3",
"@angular/cli": "~13.0.3",
"@angular/compiler-cli": "~13.0.0",
"@types/jest": "^29.2.3",
Expand Down
2 changes: 1 addition & 1 deletion test/apps/angular-v14/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~14.2.0",
"@angular-builders/jest": "^14.1.0",
"@angular-devkit/build-angular": "~14.2.0",
"@angular/cli": "~14.2.0",
"@angular/compiler-cli": "~14.2.0",
"@types/jest": "^29.2.3",
Expand Down
3 changes: 3 additions & 0 deletions test/apps/angular-v15/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,8 @@
}
}
}
},
"cli": {
"analytics": false
}
}
3 changes: 3 additions & 0 deletions test/apps/angular-v16/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,8 @@
}
}
}
},
"cli": {
"analytics": false
}
}
12 changes: 6 additions & 6 deletions test/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/register": "^7.18.9",
"@wdio/cli": "^7.25.1",
"@wdio/jasmine-framework": "^7.25.1",
"@wdio/junit-reporter": "^7.25.1",
"@wdio/local-runner": "^7.25.1",
"@wdio/selenium-standalone-service": "^7.25.1",
"@wdio/spec-reporter": "^7.25.1",
"@wdio/cli": "^8.35.1",
"@wdio/jasmine-framework": "^8.35.1",
"@wdio/junit-reporter": "^8.32.4",
"@wdio/local-runner": "^8.35.1",
"@wdio/sauce-service": "^8.35.1",
"@wdio/spec-reporter": "^8.32.4",
"cross-spawn-with-kill": "^1.0.0",
"wait-on": "^8.0.1",
"eslint-plugin-jasmine": "^4.1.2",
Expand Down
20 changes: 3 additions & 17 deletions test/e2e/wdio.conf.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,9 @@ if (CI) {
]);
}

// driver version must match installed chrome version
// https://chromedriver.storage.googleapis.com/index.html
const CHROMEDRIVER_VERSION = process.env.CHROMEDRIVER_VERSION || '106.0.5249.61';
const drivers = {
chrome: { version: CHROMEDRIVER_VERSION }
};
if (process.env.CHROME_BINARY) {
browserOptions.binary = process.env.CHROME_BINARY;
}

exports.config = {
jasmineNodeOpts: {
Expand Down Expand Up @@ -146,17 +143,6 @@ exports.config = {
// your test setup with almost no effort. Unlike plugins, they don't add new
// commands. Instead, they hook themselves up into the test process.
services: [
[
'selenium-standalone',
{
installArgs: {
drivers
},
args: {
drivers
}
}
]
],

// Framework you want to run your specs with.
Expand Down
Loading