- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编辑:为了遵守 Stackoverflow 指南并让我们所有人的事情变得简单,我提交了一个可重现的小示例来重现我的错误:
https://github.com/shackra/stackoverflow-alias-bug
编辑 2:如果这有帮助,我正在使用 asdf
版本 v0.8.0-c6145d0
来管理我的 Nodejs
安装:
~ $ whereis node
node: /usr/bin/node /usr/include/node /home/jorge/.asdf/shims/node /usr/share/man/man1/node.1.gz
~ $ node --version
v14.2.0
~ $ whereis yarn
yarn: /home/jorge/.asdf/shims/yarn
~ $ whereis npm
npm: /usr/bin/npm /home/jorge/.asdf/shims/npm /usr/share/man/man1/npm.1
对于现有的 React 项目,我使用了 CRA,现在消除了大多数错误,但是在调试问题几个小时后我无法使我的别名正常工作:
npm run build
> <a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="badcc8d5d4cedfd4defa8a948b948a" rel="noreferrer noopener nofollow">[email protected]</a> prebuild /home/jorge/code/kue/fero/dev/frontend
> nps generate-build-version
nps is executing `generate-build-version` : nps genver
nps is executing `genver` : deno run --allow-read --allow-write generate-build-version.ts
> <a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="7c1a0e1312081912183c4c524d524c" rel="noreferrer noopener nofollow">[email protected]</a> build /home/jorge/code/kue/fero/dev/frontend
> nps build
nps is executing `build` : craco build
craco: *** Cannot find ESLint loader (eslint-loader). ***
Creating an optimized production build...
● Webpack █████████████████████████ building (11%) 12/16 modules 4 active
css-loader › postcss-loader › src/App.css
Failed to compile.
./src/App.tsx
Cannot find module: 'pages/AdminLand'. Make sure this package is installed.
You can install this package by running: npm install pages/AdminLand.
The script called "build" which runs "craco build" failed with exit code 1 https://github.com/sezna/nps/blob/master/other/ERRORS_AND_WARNINGS.md#failed-with-exit-code
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! <a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="8bedf9e4e5ffeee5efcbbba5baa5bb" rel="noreferrer noopener nofollow">[email protected]</a> build: `nps build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the <a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="d4b2a6bbbaa0b1bab094e4fae5fae4" rel="noreferrer noopener nofollow">[email protected]</a> build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/jorge/.npm/_logs/2020-11-29T02_52_51_308Z-debug.log
我的package.json:
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@casl/ability": "^4.1.6",
"@casl/react": "^2.1.1",
"@craco/craco": "^5.8.0",
"@sentry/browser": "^5.27.6",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.8",
"antd": "^4.8.6",
"axios": "^0.21.0",
"classnames": "^2.2.6",
"craco-antd": "^1.19.0",
"currency.js": "^2.0.3",
"file-saver": "^2.0.5",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"nps": "^5.10.0",
"nps-utils": "^1.7.0",
"print-js": "^1.5.0",
"query-string": "^6.13.7",
"react": "^17.0.1",
"react-context-devtool": "^2.0.0",
"react-cosmos": "^5.5.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"typescript": "^4.0.3",
"ulid": "^2.3.0",
"url-regex": "npm:url-regex-safe@^1.0.2",
"web-vitals": "^0.2.4"
},
"scripts": {
"nps": "nps",
"clean": "rm -rf build",
"prebuild": "nps generate-build-version",
"start": "nps start",
"build": "nps build",
"test": "nps test",
"cosmos": "nps cosmos",
"lint": "nps lint",
"lint-fix": "nps lint.fix",
"tsc": "nps tsc",
"bump-patch": "nps bump-patch",
"bump-minor": "nps bump-minor",
"bump-major": "nps bump-major",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/file-saver": "^2.0.1",
"@types/lodash": "^4.14.165",
"@types/react-router-dom": "^5.1.6",
"craco-alias": "^2.1.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"favicons-webpack-plugin": "^4.2.0",
"webpack-bundle-analyzer": "^4.1.0",
"webpackbar": "^5.0.0-3"
}
}
最后是我的craco.config.js:
const path = require('path')
// ...
process.env.BROWSER = 'none'
module.exports = {
plugins: [
// ...
],
webpack: {
// ...
resolve: {
alias: {
components: path.resolve(__dirname, './src/components/'),
modules: path.resolve(__dirname, './src/modules/'),
pages: path.resolve(__dirname, './src/pages/'),
types: path.resolve(__dirname, './src/types/'),
utils: path.resolve(__dirname, './src/utils/'),
},
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
jest: {
transformIgnorePatterns: [
'/node_modules/(?!antd|@ant-design|rc-.+?|@babel/runtime).+(js|jsx)$',
],
configure: {
moduleNameMapper: {
'^components(.*)$': '<rootDir>/src/components$1',
'^modules(.*)$': '<rootDir>/src/modules$1',
'^pages(.*)$': '<rootDir>/src/pages$1',
'^types(.*)$': '<rootDir>/src/types$1',
'^utils(.*)$': '<rootDir>/src/utils$1',
},
},
},
}
这就是我扩展 tsconfig.json 的方式:
{
"compilerOptions": {
"pretty": false,
"jsx": "react",
"baseUrl": "src"
}
}
我提供以下指导,这是我的项目的目录布局。
.
├── build
│ ├── icono.svg
│ ├── manifest.json
│ ├── meta.json
│ └── robots.txt
├── CHANGELOG.rst
├── CONTRIBUTING.md
├── cosmos.config.json
├── craco.config.js
├── default.conf
├── docker-compose.yml
├── Dockerfile
├── generate-build-version.ts
├── index.js
├── LICENSE
├── Makefile
├── package.json
├── package-lock.json
├── package-scripts.js
├── public
│ ├── icono.svg
│ ├── index.html
│ ├── manifest.json
│ ├── meta.json
│ └── robots.txt
├── README.md
├── replace-interface-with-decimal-type.el
├── src
│ ├── App.css
│ ├── App.tsx
│ ├── CacheBuster.tsx
│ ├── components
│ ├── cosmos.decorator.tsx
│ ├── index.tsx
│ ├── modules
│ │ ├── ability
│ │ ├── authorization
│ │ ├── invoice
│ │ ├── notification
│ │ └── resource
│ ├── pages
│ │ ├── AdminLand.tsx
│ ├── react-app-env.d.ts
│ ├── react-context-devtool.d.ts
│ ├── sentry.jsx
│ ├── serviceWorker.js
│ ├── styles
│ │ └── antd
│ ├── types
│ ├── utils
│ └── vendor.d.ts
├── tsconfig.custom.json
└── tsconfig.json
我尝试使用 babel resolver plugin没有成功。有什么帮助解决这个问题吗?
最佳答案
我发现 craco.config.js 格式需要更正。
改变
webpack: {
resolve: { // WRONG you do not need resolve for craco.config.js
alias: {
things: path.resolve(__dirname, "./src/things/"),
},
至
webpack: {
alias: {
things: path.resolve(__dirname, "./src/things/"),
},
这是因为 craco.config.js json 格式与 webpack 格式不同
引用号:https://github.com/gsoft-inc/craco/blob/master/packages/craco/README.md#configuration-file
之后,我还将您的 thing.js 更新为
import React from "react"
const thing = () => { return <div> Stackover</div>}
export default thing;
关于reactjs - 在使用 craco 的 create-react-app 中导入别名无法按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65055214/
当我这样做时... import numpy as np ...我可以使用它但是... import pprint as pp ...不能,因为我需要这样做... from pprint import
我第一次尝试将 OpenCV 用于 Python 3。要安装,我只需在终端中输入“pip3 install opencv-python”。当我这样做时,我在 Finder(我在 Mac 上)中看到,在
如果有一个库我将使用至少两种方法,那么以下之间在性能或内存使用方面是否有任何差异? from X import method1, method2 和 import X 最佳答案 有区别,因为在 imp
我正在从 lodash 导入一些函数,我的同事告诉我,单独导入每个函数比将它们作为一个组导入更好。 当前方法: import {fn1, fn2, fn3} from 'lodash'; 首选方法:
之间有什么关系: import WSDL 中的元素 -和- import元素和在 XML Schema ...尤其是 location 之间的关系前者和 schemaLocation 的属性后者的属性
我在从 'theano.configdefaults' 导入 'local_bitwidth' 时遇到问题。并显示以下消息: ImportError
我注意到 React 可以这样导入: import * as React from 'react'; ...或者像这样: import React from 'react'; 第一个导入 react
对于当前的项目,我必须使用矩阵中提供的信息并对其进行数学计算,以及使用 ITK/VTK 函数来显示医疗信息/渲染。基本上我必须以(我猜)50/50 的方式同时使用 matlab 例程和 VTK/ITK
当我看到 pysqlite 的示例时,SQLite 库有两个用例。 from sqlite3 import dbapi2 as sqlite3 和 import sqlite3 为什么有两种方式支持s
我使用 Anaconda Python 发行版:Python 2.7 x64 和 Windows 7 SP1 x64 Ultimate。 当我import matplotlib.pyplot时,我得到
目录 【容器】镜像导出/导入 导出 导入 带标签 不带标签,后期修改 【仓库】镜像导出/导入
我正在寻找一种导入模块的方法,以便我可以从子文件夹 project/v0 和根文件夹 project 运行脚本。/p> 我在 python 3.6 中的文件结构(这就是没有初始化文件的原因) proj
我通常被告知以下是不好的做法。 from module import * 主要原因(或者有人告诉我)是,您可能会导入一些您不想要的东西,并且它可能会隐藏另一个模块中具有类似名称的函数或类。 但是,Py
我为 urllib (python3) 编写了一个小包装器。在if中导入模块是否正确且安全? if self.response_encoding == 'gzip': import gzip
我正在 pimcore 中创建一个新站点。有没有办法导出/导入 pimcore 站点的完整数据,以便我可以导出 xml/csv 格式的 pimcore 数据进行必要的更改,然后将其导入回来? 最佳答案
在 Node JS 中测试以下模块布局,看起来本地导出的定义总是在名称冲突的情况下替换外部导出的定义(参见 B.js 中的 f1)。 A.js export const f1 = 'A' B.js e
我在使用 VBA 代码时遇到了一些问题,该代码应该将 excel 数据导入我的 Access 数据库。当我运行代码时,我收到一个运行时错误“运行时错误 438 对象不支持此属性或方法”。来自我在其他论
我有一个名为 elements 的包,其中包含按钮、trifader、海报等内容。在 Button 类中,我正在执行 from elements import * 这执行正常,当我尝试 print(p
在我长期使用 python 的经验中,我遇到了一个非常奇怪的问题。 提前我想说我想知道为什么会发生这种情况 ,而不是如何更改我的代码或如何修复它,因为我也可以做到。 我正在使用 python2.7.3
我正在更新我的包。但是,我正在为依赖项/导入而苦苦挣扎。我使用了两个冲突的包 - ggplot2和 psych及其功能 alpha当然还有 alpha ggplot2 的对象不同于 alpha psy
我是一名优秀的程序员,十分优秀!