Why the import path for three in CDN of OrbitControls is different for three.js v0.126.1 and v0.128.0?

CDN of OrbitControls.js in v0.126.1 starts with the following which use a relative path for three.module.js.

import {
	EventDispatcher,
	MOUSE,
	Quaternion,
	Spherical,
	TOUCH,
	Vector2,
	Vector3
} from '../../../build/three.module.js';

However, the CDN of OrbitControls.js in v0.128.0 is different, in which three is referred directly:

import {
	EventDispatcher,
	MOUSE,
	Quaternion,
	Spherical,
	TOUCH,
	Vector2,
	Vector3
} from 'three';

May I ask:

  1. the difference between these two OrbitControls.js, and
  2. how it will affect the way OrbitControls.js is imported?

Thanks.

Related : Importing jsm modules using explicut urls no longer works for basic jsfiddle examples since r128 - Questions - three.js forum (threejs.org)

Also discussed at GitHub: