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

chore: replace the cdn, unpkg -> jsdelivr #28006

Merged
merged 2 commits into from
Mar 26, 2024
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
8 changes: 4 additions & 4 deletions docs/examples/en/loaders/3DMLoader.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ <h3>[method:Object3D load]( [param:String url], [param:Function onLoad], [param:
// Specify path to a folder containing WASM/JS libraries or a CDN.
// For example, /jsm/libs/rhino3dm/ is the location of the library inside the three.js repository
// loader.setLibraryPath( '/path_to_library/rhino3dm/' );
loader.setLibraryPath( 'https://unpkg.com/[email protected]/' );
loader.setLibraryPath( 'https://cdn.jsdelivr.net/npm/[email protected]/' );

// Load a 3DM file
loader.load(
Expand Down Expand Up @@ -205,13 +205,13 @@ <h3>[method:Object3D parse]( [param:ArrayBuffer buffer], [param:Function onLoad]
</p>

<code>
import rhino3dm from 'https://unpkg.com/[email protected]'
import rhino3dm from 'https://cdn.jsdelivr.net/npm/[email protected]'

// Instantiate a loader
const loader = new Rhino3dmLoader();

// Specify path to a folder containing WASM/JS libraries or a CDN.
loader.setLibraryPath( 'https://unpkg.com/[email protected]' );
loader.setLibraryPath( 'https://cdn.jsdelivr.net/npm/[email protected]' );

const rhino = await rhino3dm();
console.log('Loaded rhino3dm.');
Expand Down Expand Up @@ -244,7 +244,7 @@ <h3>[method:this setLibraryPath]( [param:String value] )</h3>
// Specify path to a folder containing the WASM/JS library:
loader.setLibraryPath( '/path_to_library/rhino3dm/' );
// or from a CDN:
loader.setLibraryPath( 'https://unpkg.com/[email protected]' );
loader.setLibraryPath( 'https://cdn.jsdelivr.net/npm/[email protected]' );
</code>

<h3>[method:this setWorkerLimit]( [param:Number workerLimit] )</h3>
Expand Down
8 changes: 4 additions & 4 deletions docs/examples/zh/loaders/3DMLoader.html
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ <h3>[method:Object3D load]( [param:String url], [param:Function onLoad], [param:
// Specify path to a folder containing WASM/JS libraries or a CDN.
// For example, /jsm/libs/rhino3dm/ is the location of the library inside the three.js repository
// loader.setLibraryPath( '/path_to_library/rhino3dm/' );
loader.setLibraryPath( 'https://unpkg.com/[email protected]/' );
loader.setLibraryPath( 'https://cdn.jsdelivr.net/npm/[email protected]/' );

// Load a 3DM file
loader.load(
Expand Down Expand Up @@ -212,13 +212,13 @@ <h3>[method:Object3D parse]( [param:ArrayBuffer buffer], [param:Function onLoad]
</p>

<code>
import rhino3dm from 'https://unpkg.com/[email protected]'
import rhino3dm from 'https://cdn.jsdelivr.net/npm/[email protected]'

// Instantiate a loader
const loader = new Rhino3dmLoader();

// Specify path to a folder containing WASM/JS libraries or a CDN.
loader.setLibraryPath( 'https://unpkg.com/[email protected]' );
loader.setLibraryPath( 'https://cdn.jsdelivr.net/npm/[email protected]' );

const rhino = await rhino3dm();
console.log('Loaded rhino3dm.');
Expand Down Expand Up @@ -251,7 +251,7 @@ <h3>[method:this setLibraryPath]( [param:String value] )</h3>
// Specify path to a folder containing the WASM/JS library:
loader.setLibraryPath( '/path_to_library/rhino3dm/' );
// or from a CDN:
loader.setLibraryPath( 'https://unpkg.com/[email protected]' );
loader.setLibraryPath( 'https://cdn.jsdelivr.net/npm/[email protected]' );
</code>

<h3>[method:this setWorkerLimit]( [param:Number workerLimit] )</h3>
Expand Down
6 changes: 3 additions & 3 deletions docs/manual/ar/introduction/Installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ <h2>التثبيت من CDN أو استضافة ثابتة</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js"
}
}
&lt;/script>
Expand Down Expand Up @@ -127,8 +127,8 @@ <h2>أمثلة</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://unpkg.com/three@&lt;version&gt;/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/examples/jsm/"
}
}
&lt;/script>
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/en/introduction/Installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ <h3>Development</h3>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://unpkg.com/three@&lt;version&gt;/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/examples/jsm/"
}
}
&lt;/script>
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/fr/introduction/Creating-a-scene.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h2>Avant de commencer</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';

// Our Javascript will go here.
&lt;/script&gt;
Expand Down Expand Up @@ -129,7 +129,7 @@ <h2>Le résultat</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';

const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
Expand Down
6 changes: 3 additions & 3 deletions docs/manual/fr/introduction/Installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ <h2>Installer depuis un CDN ou un hébergement statique</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js"
}
}
&lt;/script>
Expand Down Expand Up @@ -110,8 +110,8 @@ <h2>Addons</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://unpkg.com/three@&lt;version&gt;/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/examples/jsm/"
}
}
&lt;/script>
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/it/introduction/Creating-a-scene.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h2>Prima di iniziare</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';

// Il nostro Javascript andrà qui
&lt;/script&gt;
Expand Down Expand Up @@ -147,7 +147,7 @@ <h2>Il risultato</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';

const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
Expand Down
6 changes: 3 additions & 3 deletions docs/manual/it/introduction/Installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ <h2>Installazione da CDN o hosting statico</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js"
}
}
&lt;/script>
Expand Down Expand Up @@ -110,8 +110,8 @@ <h2>Addons</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://unpkg.com/three@&lt;version&gt;/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/examples/jsm/"
}
}
&lt;/script>
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/ja/introduction/Creating-a-scene.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h2>始める前に</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';

// Our Javascript will go here.
&lt;/script&gt;
Expand Down Expand Up @@ -130,7 +130,7 @@ <h2>成果</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';

const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
Expand Down
6 changes: 3 additions & 3 deletions docs/manual/ja/introduction/Installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ <h2>CDNや静的ホスティングからインストールをする</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js"
}
}
&lt;/script>
Expand Down Expand Up @@ -111,8 +111,8 @@ <h2>Addons</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://unpkg.com/three@&lt;version&gt;/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/examples/jsm/"
}
}
&lt;/script>
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/ko/introduction/Creating-a-scene.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h2>시작하기에 앞서</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';
´
// Our Javascript will go here.
&lt;/script&gt;
Expand Down Expand Up @@ -133,7 +133,7 @@ <h2>결과 화면</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';

const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
Expand Down
6 changes: 3 additions & 3 deletions docs/manual/ko/introduction/Installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ <h2>static hosting 및 CDN을 통한 설치</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js"
}
}
&lt;/script>
Expand Down Expand Up @@ -123,8 +123,8 @@ <h2>Addons</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://unpkg.com/three@&lt;version&gt;/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/examples/jsm/"
}
}
&lt;/script>
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/pt-br/introduction/Creating-a-scene.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h2>Antes de começar</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';

// Our Javascript will go here.
&lt;/script&gt;
Expand Down Expand Up @@ -131,7 +131,7 @@ <h2>O resultado</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';

const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
Expand Down
6 changes: 3 additions & 3 deletions docs/manual/pt-br/introduction/Installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h2>Instalar através de CDN ou hospedagem estática</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js"
}
}
&lt;/script>
Expand Down Expand Up @@ -96,8 +96,8 @@ <h2>Addons</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://unpkg.com/three@&lt;version&gt;/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/examples/jsm/"
}
}
&lt;/script>
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/ru/introduction/Creating-a-scene.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h2>Прежде чем мы начнем</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';

// Наш Javascript будет здесь..
&lt;/script&gt;
Expand Down Expand Up @@ -130,7 +130,7 @@ <h2>Результат</h2>
&lt;/head&gt;
&lt;body&gt;
&lt;script type="module"&gt;
import * as THREE from 'https://unpkg.com/three/build/three.module.js';
import * as THREE from 'https://cdn.jsdelivr.net/npm/three/build/three.module.js';

const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
Expand Down
6 changes: 3 additions & 3 deletions docs/manual/ru/introduction/Installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ <h2>Установка с CDN или статического хостинга</
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js"
}
}
&lt;/script>
Expand Down Expand Up @@ -140,8 +140,8 @@ <h2>Дополнения</h2>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://unpkg.com/three@&lt;version&gt;/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/examples/jsm/"
}
}
&lt;/script>
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/zh/introduction/Installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ <h3>开发</h3>
&lt;script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://unpkg.com/three@&lt;version&gt;/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@&lt;version&gt;/examples/jsm/"
}
}
&lt;/script>
Expand Down
4 changes: 2 additions & 2 deletions editor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
"three/addons/": "../examples/jsm/",

"three/examples/": "../examples/",
"three-gpu-pathtracer": "https://unpkg.com/[email protected]/build/index.module.js",
"three-mesh-bvh": "https://unpkg.com/[email protected]/build/index.module.js"
"three-gpu-pathtracer": "https://cdn.jsdelivr.net/npm/[email protected]/build/index.module.js",
"three-mesh-bvh": "https://cdn.jsdelivr.net/npm/[email protected]/build/index.module.js"
}
}
</script>
Expand Down
4 changes: 0 additions & 4 deletions examples/webgl2_ubo_arrays.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,6 @@

</script>

<!-- Import maps polyfill -->
<!-- Remove this when import maps will be widely supported -->
<script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>

<script type="importmap">
{
"imports": {
Expand Down
4 changes: 2 additions & 2 deletions examples/webgl_geometry_csg.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"imports": {
"three": "../build/three.module.js",
"three/addons/": "./jsm/",
"three-mesh-bvh": "https://unpkg.com/[email protected]/build/index.module.js",
"three-bvh-csg": "https://unpkg.com/[email protected]/build/index.module.js"
"three-mesh-bvh": "https://cdn.jsdelivr.net/npm/[email protected]/build/index.module.js",
"three-bvh-csg": "https://cdn.jsdelivr.net/npm/[email protected]/build/index.module.js"
}
}
</script>
Expand Down
8 changes: 4 additions & 4 deletions examples/webgl_loader_ifc.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"three": "../build/three.module.js",
"three/addons/": "./jsm/",
"three/examples/jsm/utils/BufferGeometryUtils": "./jsm/utils/BufferGeometryUtils.js",
"three-mesh-bvh": "https://unpkg.com/[email protected]/build/index.module.js",
"web-ifc": "https://unpkg.com/[email protected]/web-ifc-api.js",
"web-ifc-three": "https://unpkg.com/[email protected]/IFCLoader.js"
"three-mesh-bvh": "https://cdn.jsdelivr.net/npm/[email protected]/build/index.module.js",
"web-ifc": "https://cdn.jsdelivr.net/npm/[email protected]/web-ifc-api.js",
"web-ifc-three": "https://cdn.jsdelivr.net/npm/[email protected]/IFCLoader.js"
}
}
</script>
Expand Down Expand Up @@ -72,7 +72,7 @@

//Setup IFC Loader
const ifcLoader = new IFCLoader();
await ifcLoader.ifcManager.setWasmPath( 'https://unpkg.com/[email protected]/', true );
await ifcLoader.ifcManager.setWasmPath( 'https://cdn.jsdelivr.net/npm/[email protected]/', true );

await ifcLoader.ifcManager.parser.setupOptionalCategories( {
[ IFCSPACE ]: false,
Expand Down
Loading