При импорте начальной загрузки 4 в Aurelia-CLI модуль не найден - PullRequest
0 голосов
/ 20 мая 2018

Недавно начал использовать Aurelia, и у меня возникли некоторые проблемы с импортом начальной загрузки 4. Я настроил приложение, используя Aurelia-CLI с машинописью и базовой настройкой веб-пакета.

Сначала я попытался следовать руководству здесь: https://aureliacasts.com/blog/2018/01/05/aurelia-app-with-bootstrap-4/, но в результате возникла ошибка «Модуль не найден: Ошибка: не удается разрешить« bootstrap / css / bootstrap.css »в« C: \ project \ app \ src »

I 'я установил jQuery, Bootstrap и Popper с npm:

npm i jquery bootstrap popper.js --save

Я изменил свой файл /aurelia_project/aurelia.json, добавив в него следующую зависимость:

  "dependencies": [
   "jquery",
   {
     "name": "popper.js",
     "path": "../node_modules/popper.js/dist/umd",
     "main": "popper.min"
   },
   {
     "name": "bootstrap",
     "path": "../node_modules/bootstrap/dist",
     "main": "js/bootstrap.min",
     "deps": ["jquery"],
     "exports": "$",
     "resources": [
       "css/bootstrap.css"
     ]
   }
]

и в моем app.tsУ меня есть

import { PLATFORM } from 'aurelia-pal';
import { Router, RouterConfiguration } from 'aurelia-router';
import 'bootstrap';

export class App {
  public router: Router;

  public configureRouter(config: RouterConfiguration, router: Router){
    config.title = 'My second app';
    config.options.pushState = true;
    config.map([
      {  route: ['','home'], name: 'home', moduleId: PLATFORM.moduleName('routes/home/index'), nav: true, title: 'Home'},
      {  route: 'about', name: 'about', moduleId: PLATFORM.moduleName('routes/about/index'), nav:true, title: 'About'}
    ]);
     this.router = router;
  }
}

и, наконец, в моем app.html у меня есть:

<template>

  <require from="bootstrap/css/bootstrap.css"></require>

  <!-- Top navigation -->
  <require from="./components/top-navigation/top-navigation.html"></require>
  <top-navigation router.bind="router"></top-navigation>

  <!-- Renderpage -->
  <router-view></router-view>  

</template>

После изменения файла aurelia.json я обязательно остановил AU и начал заново с "au run --watch"однако я все еще получаю следующую ошибку:

ОШИБКА в ./src/app.html Модуль не найден: Ошибка: не удается разрешить 'bootstrap / css / bootstrap.css' в 'C: \ project\ app \ src '@ ./src/app.html @ ./src/app.ts @ ./src/main.ts @ ./node_modules/aurelia-webpack-plugin/runtime / empty-entry.js @ multi aurelia-webpack-plugin / runtime / пустая запись aurelia-webpack-plugin / runtime / pal-loader-entry aurelia-webpack-plugin / runtime / пустая запись aurelia-webpack-plugin /runtime / pal-loader-entry aurelia-bootstrapper

1 Ответ

0 голосов
/ 21 мая 2018

В случае, если кто-то еще может наткнуться на это, я решил это с помощью веб-пакета.

Я удалил «зависимости» в /aurelia_project/aurelia.json.

Я удалил

 <require from="bootstrap/css/bootstrap.css"></require>

из app.html и удалил из app.ts следующее:

import 'bootstrap';

Затем в webpack.config.js я изменил const cssRules на (добавлен postcss-загрузчик и опции, добавлены jquery и boostrapв module.exports -> entry -> vendor и в соответствии с правилами модуля я раскрываю jquery глобально):

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const project = require('./aurelia_project/aurelia.json');
const { AureliaPlugin, ModuleDependenciesPlugin } = require('aurelia-webpack-plugin');
const { ProvidePlugin } = require('webpack');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');

// config helpers:
const ensureArray = (config) => config && (Array.isArray(config) ? config : [config]) || [];
const when = (condition, config, negativeConfig) =>
  condition ? ensureArray(config) : ensureArray(negativeConfig);

// primary config:
const title = 'Aurelia Navigation Skeleton';
const outDir = path.resolve(__dirname, project.platform.output);
const srcDir = path.resolve(__dirname, 'src');
const nodeModulesDir = path.resolve(__dirname, 'node_modules');
const baseUrl = '/';

const cssRules = [
  { loader: 'css-loader' },
  { loader: 'postcss-loader',
  options: { plugins: () => [require('autoprefixer')({ browsers: ['last 2 versions']})]}}
];

module.exports = ({production, server, extractCss, coverage, analyze} = {}) => ({
  resolve: {
    extensions: ['.ts', '.js'],
    modules: [srcDir, 'node_modules'],
  },
  entry: {
    app: ['aurelia-bootstrapper'],
    vendor: ['bluebird', 'jquery', 'bootstrap'],
  },
  mode: production ? 'production' : 'development',
  output: {
    path: outDir,
    publicPath: baseUrl,
    filename: production ? '[name].[chunkhash].bundle.js' : '[name].[hash].bundle.js',
    sourceMapFilename: production ? '[name].[chunkhash].bundle.map' : '[name].[hash].bundle.map',
    chunkFilename: production ? '[name].[chunkhash].chunk.js' : '[name].[hash].chunk.js'
  },
  performance: { hints: false },
  devServer: {
    contentBase: outDir,
    // serve index.html for all 404 (required for push-state)
    historyApiFallback: true
  },
  devtool: production ? 'nosources-source-map' : 'cheap-module-eval-source-map',
  module: {
    rules: [
      // CSS required in JS/TS files should use the style-loader that auto-injects it into the website
      // only when the issuer is a .js/.ts file, so the loaders are not applied inside html templates
      {
        test: /\.css$/i,
        issuer: [{ not: [{ test: /\.html$/i }] }],
        use: extractCss ? ExtractTextPlugin.extract({
          fallback: 'style-loader',
          use: cssRules
        }) : ['style-loader', ...cssRules],
      },
      {
        test: /\.css$/i,
        issuer: [{ test: /\.html$/i }],
        // CSS required in templates cannot be extracted safely
        // because Aurelia would try to require it again in runtime
        use: cssRules
      },
      { test: /\.html$/i, loader: 'html-loader' },
      { test: /\.tsx?$/, loader: "ts-loader" },
      { test: /\.json$/i, loader: 'json-loader' },
      // use Bluebird as the global Promise implementation:
      { test: /[\/\\]node_modules[\/\\]bluebird[\/\\].+\.js$/, loader: 'expose-loader?Promise' },
      // exposes jQuery globally as $ and as jQuery:
      { test: require.resolve('jquery'), loader: 'expose-loader?$!expose-loader?jQuery' },
      // embed small images and fonts as Data Urls and larger ones as files:
      { test: /\.(png|gif|jpg|cur)$/i, loader: 'url-loader', options: { limit: 8192 } },
      { test: /\.woff2(\?v=[0-9]\.[0-9]\.[0-9])?$/i, loader: 'url-loader', options: { limit: 10000, mimetype: 'application/font-woff2' } },
      { test: /\.woff(\?v=[0-9]\.[0-9]\.[0-9])?$/i, loader: 'url-loader', options: { limit: 10000, mimetype: 'application/font-woff' } },
      // load these fonts normally, as files:
      { test: /\.(ttf|eot|svg|otf)(\?v=[0-9]\.[0-9]\.[0-9])?$/i, loader: 'file-loader' },
      ...when(coverage, {
        test: /\.[jt]s$/i, loader: 'istanbul-instrumenter-loader',
        include: srcDir, exclude: [/\.{spec,test}\.[jt]s$/i],
        enforce: 'post', options: { esModules: true },
      })
    ]
  },
  plugins: [
    new AureliaPlugin(),
    new ProvidePlugin({
      'Promise': 'bluebird',
      '$': 'jquery',
      'jQuery': 'jquery',
      'window.jquery':'jquery',
      Popper: ['popper.js', 'default'] // Bootstrap 4 dependency
    }),
    new ModuleDependenciesPlugin({
      'aurelia-testing': [ './compile-spy', './view-spy' ]
    }),
    new HtmlWebpackPlugin({
      template: 'index.ejs',
      minify: production ? {
        removeComments: true,
        collapseWhitespace: true
      } : undefined,
      metadata: {
        // available in index.ejs //
        title, server, baseUrl
      }
    }),
    ...when(extractCss, new ExtractTextPlugin({
      filename: production ? '[contenthash].css' : '[id].css',
      allChunks: true
    })),
    ...when(production, new CopyWebpackPlugin([
      { from: 'static/favicon.ico', to: 'favicon.ico' }])),
    ...when(analyze, new BundleAnalyzerPlugin())
  ]
});

и последний шаг - импорт boostrap в начало main.ts:

import 'bootstrap/dist/css/bootstrap.css';
...