Skip to content
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
5 changes: 5 additions & 0 deletions .changeset/gorgeous-jeans-complain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@callstack/repack": minor
---

Assets loader can now be called without specyifing platform explicitly - the platform is now inferred automatically from configuration
13 changes: 3 additions & 10 deletions apps/tester-app/rspack.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,7 @@ export default (env) => {
path.join(context, 'src/assetsTest/inlineAssets'),
path.join(context, 'src/assetsTest/remoteAssets'),
],
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
use: '@callstack/repack/assets-loader',
},
{
test: /\.svg$/,
Expand All @@ -95,10 +92,7 @@ export default (env) => {
Repack.ASSET_EXTENSIONS.filter((ext) => ext !== 'svg')
),
include: [path.join(context, 'src/assetsTest/localAssets')],
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
use: '@callstack/repack/assets-loader',
},
{
test: Repack.getAssetExtensionsRegExp(
Expand All @@ -107,7 +101,7 @@ export default (env) => {
include: [path.join(context, 'src/assetsTest/inlineAssets')],
use: {
loader: '@callstack/repack/assets-loader',
options: { platform, inline: true },
options: { inline: true },
},
},
{
Expand All @@ -118,7 +112,6 @@ export default (env) => {
use: {
loader: '@callstack/repack/assets-loader',
options: {
platform,
remote: {
enabled: true,
publicPath: 'http://localhost:9999/remote-assets',
Expand Down
13 changes: 3 additions & 10 deletions apps/tester-app/webpack.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,7 @@ export default (env) => {
path.join(context, 'src/assetsTest/inlineAssets'),
path.join(context, 'src/assetsTest/remoteAssets'),
],
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
use: '@callstack/repack/assets-loader',
},
{
test: /\.svg$/,
Expand All @@ -88,10 +85,7 @@ export default (env) => {
Repack.ASSET_EXTENSIONS.filter((ext) => ext !== 'svg')
),
include: [path.join(context, 'src/assetsTest/localAssets')],
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
use: '@callstack/repack/assets-loader',
},
{
test: Repack.getAssetExtensionsRegExp(
Expand All @@ -100,7 +94,7 @@ export default (env) => {
include: [path.join(context, 'src/assetsTest/inlineAssets')],
use: {
loader: '@callstack/repack/assets-loader',
options: { platform, inline: true },
options: { inline: true },
},
},
{
Expand All @@ -111,7 +105,6 @@ export default (env) => {
use: {
loader: '@callstack/repack/assets-loader',
options: {
platform,
remote: {
enabled: true,
publicPath: 'http://localhost:9999/remote-assets',
Expand Down
7 changes: 2 additions & 5 deletions apps/tester-federation-v2/configs/rspack.host-app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,8 @@ export default (env) => {
},
},
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
test: Repack.getAssetExtensionsRegExp(),
use: '@callstack/repack/assets-loader',
},
],
},
Expand Down
4 changes: 2 additions & 2 deletions apps/tester-federation-v2/configs/rspack.mini-app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ export default (env) => {
},
},
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
test: Repack.getAssetExtensionsRegExp(),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform, inline: true },
options: { inline: true },
},
},
],
Expand Down
7 changes: 2 additions & 5 deletions apps/tester-federation-v2/configs/webpack.host-app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,8 @@ export default (env) => {
type: 'javascript/auto',
},
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
test: Repack.getAssetExtensionsRegExp(),
use: '@callstack/repack/assets-loader',
},
],
},
Expand Down
4 changes: 2 additions & 2 deletions apps/tester-federation-v2/configs/webpack.mini-app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ export default (env) => {
type: 'javascript/auto',
},
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
test: Repack.getAssetExtensionsRegExp(),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform, inline: true },
options: { inline: true },
},
},
],
Expand Down
7 changes: 2 additions & 5 deletions apps/tester-federation/configs/rspack.host-app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,8 @@ export default (env) => {
},
},
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
test: Repack.getAssetExtensionsRegExp(),
use: '@callstack/repack/assets-loader',
},
],
},
Expand Down
4 changes: 2 additions & 2 deletions apps/tester-federation/configs/rspack.mini-app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ export default (env) => {
},
},
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
test: Repack.getAssetExtensionsRegExp(),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform, inline: true },
options: { inline: true },
},
},
],
Expand Down
7 changes: 2 additions & 5 deletions apps/tester-federation/configs/webpack.host-app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,8 @@ export default (env) => {
type: 'javascript/auto',
},
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
test: Repack.getAssetExtensionsRegExp(),
use: '@callstack/repack/assets-loader',
},
],
},
Expand Down
4 changes: 2 additions & 2 deletions apps/tester-federation/configs/webpack.mini-app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ export default (env) => {
type: 'javascript/auto',
},
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
test: Repack.getAssetExtensionsRegExp(),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform, inline: true },
options: { inline: true },
},
},
],
Expand Down
17 changes: 7 additions & 10 deletions packages/repack/src/loaders/assetsLoader/assetsLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,17 @@ export default async function repackAssetsLoader(
this.cacheable();
const callback = this.async();
const logger = this.getLogger('repackAssetsLoader');
const options = getOptions(this);

const isDev = !!this._compiler.options.devServer;
const platform = options.platform ?? (this._compiler.options.name as string);

const readDirAsync: AsyncFS['readdir'] = util.promisify(this.fs.readdir);
const readFileAsync: AsyncFS['readFile'] = util.promisify(this.fs.readFile);

logger.debug(`Processing asset ${this.resourcePath}`);

try {
const options = getOptions(this);

// defaults
const scalableAssetExtensions =
options.scalableAssetExtensions ?? SCALABLE_ASSETS;
Expand All @@ -58,7 +59,7 @@ export default async function repackAssetsLoader(
.relative(this.rootContext, resourceAbsoluteDirname)
.replace(new RegExp(`^[\\.\\${path.sep}]+`), '');
const resourceExtensionType = path.extname(resourcePath).replace(/^\./, '');
const suffixPattern = `(@\\d+(\\.\\d+)?x)?(\\.(${options.platform}|native))?\\.${resourceExtensionType}$`;
const suffixPattern = `(@\\d+(\\.\\d+)?x)?(\\.(${platform}|native))?\\.${resourceExtensionType}$`;
const resourceFilename = path
.basename(resourcePath)
.replace(new RegExp(suffixPattern), '');
Expand All @@ -82,7 +83,7 @@ export default async function repackAssetsLoader(
resourceExtensionType,
scalableAssetExtensions,
scalableAssetResolutions,
options.platform,
platform,
readDirAsync
);

Expand Down Expand Up @@ -125,11 +126,7 @@ export default async function repackAssetsLoader(

let destination: string;

if (
!isDev &&
!options.remote?.enabled &&
options.platform === 'android'
) {
if (!isDev && !options.remote?.enabled && platform === 'android') {
// found font family
if (
testXml.test(resourceNormalizedFilename) &&
Expand Down Expand Up @@ -210,7 +207,7 @@ export default async function repackAssetsLoader(
logger.debug(
`Resolved request ${this.resourcePath}`,
JSON.stringify({
platform: options.platform,
platform,
rootContext: this.rootContext,
resourceNormalizedFilename,
resourceFilename,
Expand Down
3 changes: 1 addition & 2 deletions packages/repack/src/loaders/assetsLoader/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { validate } from 'schema-utils';

// Note: publicPath could be obtained from webpack config in the future
export interface AssetLoaderOptions {
platform: string;
platform?: string;
scalableAssetExtensions?: string[];
scalableAssetResolutions?: string[];
inline?: boolean;
Expand All @@ -26,7 +26,6 @@ type Schema = Parameters<typeof validate>[0];

export const optionsSchema: Schema = {
type: 'object',
required: ['platform'],
properties: {
platform: {
type: 'string',
Expand Down
17 changes: 2 additions & 15 deletions templates_v5/rspack.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -81,22 +81,9 @@ module.exports = (env) => {
},
},
},
/**
* This loader handles all static assets (images, video, audio and others), so that you can
* use (reference) them inside your application.
*
* If you want to handle specific asset type manually, filter out the extension
* from `ASSET_EXTENSIONS`, for example:
* ```
* Repack.ASSET_EXTENSIONS.filter((ext) => ext !== 'svg')
* ```
*/
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
test: Repack.getAssetExtensionsRegExp(),
use: '@callstack/repack/assets-loader',
},
],
},
Expand Down
17 changes: 2 additions & 15 deletions templates_v5/rspack.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -78,22 +78,9 @@ export default (env) => {
},
},
},
/**
* This loader handles all static assets (images, video, audio and others), so that you can
* use (reference) them inside your application.
*
* If you want to handle specific asset type manually, filter out the extension
* from `ASSET_EXTENSIONS`, for example:
* ```
* Repack.ASSET_EXTENSIONS.filter((ext) => ext !== 'svg')
* ```
*/
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
test: Repack.getAssetExtensionsRegExp(),
use: '@callstack/repack/assets-loader',
},
],
},
Expand Down
17 changes: 2 additions & 15 deletions templates_v5/webpack.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -105,22 +105,9 @@ module.exports = (env) => {
exclude: /node_modules/,
use: 'babel-loader',
},
/**
* This loader handles all static assets (images, video, audio and others), so that you can
* use (reference) them inside your application.
*
* If you want to handle specific asset type manually, filter out the extension
* from `ASSET_EXTENSIONS`, for example:
* ```
* Repack.ASSET_EXTENSIONS.filter((ext) => ext !== 'svg')
* ```
*/
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
test: Repack.getAssetExtensionsRegExp(),
use: '@callstack/repack/assets-loader',
},
],
},
Expand Down
17 changes: 2 additions & 15 deletions templates_v5/webpack.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -109,22 +109,9 @@ export default (env) => {
exclude: /node_modules/,
use: 'babel-loader',
},
/**
* This loader handles all static assets (images, video, audio and others), so that you can
* use (reference) them inside your application.
*
* If you want to handle specific asset type manually, filter out the extension
* from `ASSET_EXTENSIONS`, for example:
* ```
* Repack.ASSET_EXTENSIONS.filter((ext) => ext !== 'svg')
* ```
*/
{
test: Repack.getAssetExtensionsRegExp(Repack.ASSET_EXTENSIONS),
use: {
loader: '@callstack/repack/assets-loader',
options: { platform },
},
test: Repack.getAssetExtensionsRegExp(),
use: '@callstack/repack/assets-loader',
},
],
},
Expand Down