github alibaba/ice @ice/app@3.4.10
v3.4.10

latest releases: @ice/rspack-config@1.1.9, @ice/app@3.4.11, @ice/plugin-stream-error@1.0.1...
one month ago
  • Feat: externals plugin for external dependencies mush easier #6892
import { defineConfig } from '@ice/app';
import externals from '@ice/plugin-externals';

export default defineConfig(() => ({
  plugins: [externals({ preset: 'react' })]
}));

Visit docs for more detail.

  • Feat: support the simple mode of intl solution #6953
import { defineConfig } from '@ice/app';
import intl from '@ice/plugin-intl';

export default defineConfig({
  plugins: [
    // Add intlSolution to remove the dependency of react-intl, API usage is limited in this mode.
    intl({ intlSolution: 'simple' }),
  ],
});

Visit docs for more detail.

  • Feat: unnecessary to compile routes config for server render #6856
  • Feat: support separate bundle for render document #6856
  • Fix: throw error for better debugging #6927
  • Fix: allow decorators-legacy syntax in js file #6935
  • Feat: add es2021 target for rax-compat #6899

Don't miss a new ice release

NewReleases is sending notifications on new releases.