-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdist-to-examples.ps1
More file actions
11 lines (9 loc) · 817 Bytes
/
dist-to-examples.ps1
File metadata and controls
11 lines (9 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
Set-Location examples/react-app/public/assets/
New-Item -Path sample-import-bundle.js -ItemType SymbolicLink -Value ../../../../dist/sample-import-bundle.js
New-Item -Path sample-import-bundle.css -ItemType SymbolicLink -Value ../../../../dist/sample-import-bundle.css
New-Item -Path config-import-bundle.js -ItemType SymbolicLink -Value ../../../../dist/config-import-bundle.js
Set-Location ../../../../examples/angular-app/src/assets/plugins/
New-Item -Path sample-import-bundle.js -ItemType SymbolicLink -Value ../../../../../dist/sample-import-bundle.js
New-Item -Path sample-import-bundle.css -ItemType SymbolicLink -Value ../../../../../dist/sample-import-bundle.css
New-Item -Path config-import-bundle.js -ItemType SymbolicLink -Value ../../../../../dist/config-import-bundle.js
Set-Location ../../../../../