Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.6.4 监听不到文件改动 #13584

Closed
TNT-Likely opened this issue Apr 4, 2023 · 5 comments
Closed

3.6.4 监听不到文件改动 #13584

TNT-Likely opened this issue Apr 4, 2023 · 5 comments
Labels
F-react Framework - React T-weapp Target - 编译到微信小程序 V-3 Version - 3.x

Comments

@TNT-Likely
Copy link

相关平台

微信小程序

小程序基础库: 2.34.0
使用框架: React

复现步骤

npm run dev:weapp

期望结果

文件改动,重新编译

实际结果

文件改动,无法编译

环境信息


  Taro CLI 3.6.4 environment info:
    System:
      OS: macOS 13.2.1
      Shell: 5.8.1 - /bin/zsh
    Binaries:
      Node: 18.15.0 - ~/.nvm/versions/node/v18.15.0/bin/node
      Yarn: 1.22.19 - /usr/local/bin/yarn
      npm: 9.5.0 - ~/.nvm/versions/node/v18.15.0/bin/npm
    npmPackages:
      @tarojs/cli: 3.6.4 => 3.6.4 
      @tarojs/components: 3.6.4 => 3.6.4 
      @tarojs/helper: 3.6.4 => 3.6.4 
      @tarojs/plugin-framework-react: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-alipay: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-h5: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-jd: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-qq: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-swan: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-tt: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-weapp: 3.6.4 => 3.6.4 
      @tarojs/react: 3.6.4 => 3.6.4 
      @tarojs/runtime: 3.6.4 => 3.6.4 
      @tarojs/shared: 3.6.4 => 3.6.4 
      @tarojs/taro: 3.6.4 => 3.6.4 
      @tarojs/webpack5-runner: 3.6.4 => 3.6.4 
      babel-preset-taro: 3.6.4 => 3.6.4 
      eslint-config-taro: 3.6.4 => 3.6.4 
      react: ^18.0.0 => 18.2.0 
@taro-bot2 taro-bot2 bot added F-react Framework - React T-weapp Target - 编译到微信小程序 V-3 Version - 3.x labels Apr 4, 2023
@TheKonka
Copy link
Member

TheKonka commented Apr 5, 2023

没有复现,你是不是打开小程序开发者工具自带的热重载了?

@yyh1413
Copy link

yyh1413 commented Apr 18, 2023

相关平台

微信小程序

小程序基础库: 2.34.0 使用框架: React

复现步骤

npm run dev:weapp

期望结果

文件改动,重新编译

实际结果

文件改动,无法编译

环境信息


  Taro CLI 3.6.4 environment info:
    System:
      OS: macOS 13.2.1
      Shell: 5.8.1 - /bin/zsh
    Binaries:
      Node: 18.15.0 - ~/.nvm/versions/node/v18.15.0/bin/node
      Yarn: 1.22.19 - /usr/local/bin/yarn
      npm: 9.5.0 - ~/.nvm/versions/node/v18.15.0/bin/npm
    npmPackages:
      @tarojs/cli: 3.6.4 => 3.6.4 
      @tarojs/components: 3.6.4 => 3.6.4 
      @tarojs/helper: 3.6.4 => 3.6.4 
      @tarojs/plugin-framework-react: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-alipay: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-h5: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-jd: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-qq: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-swan: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-tt: 3.6.4 => 3.6.4 
      @tarojs/plugin-platform-weapp: 3.6.4 => 3.6.4 
      @tarojs/react: 3.6.4 => 3.6.4 
      @tarojs/runtime: 3.6.4 => 3.6.4 
      @tarojs/shared: 3.6.4 => 3.6.4 
      @tarojs/taro: 3.6.4 => 3.6.4 
      @tarojs/webpack5-runner: 3.6.4 => 3.6.4 
      babel-preset-taro: 3.6.4 => 3.6.4 
      eslint-config-taro: 3.6.4 => 3.6.4 
      react: ^18.0.0 => 18.2.0 

请问解决了 我也出现这个问题

@yyh1413
Copy link

yyh1413 commented Apr 18, 2023

我用taro是3.6.2 也监听不到文件修改

@yyh1413
Copy link

yyh1413 commented Apr 18, 2023

我是将所有依赖更新为最新,在重新打包好用了
要将项目中所有依赖更新为最新版本,可以使用以下步骤:

全局安装 npm-check-updates:可以使用以下命令在全局安装 npm-check-updates:

npm install -g npm-check-updates


定位到项目根目录:在命令行中定位到包含 package.json 文件的项目根目录。

运行 npm-check-updates:运行以下命令,使用 npm-check-updates 检查并更新依赖版本:

ncu -u
该命令将检查 package.json 文件中的所有依赖,并将它们的版本更新为最新版本。 -u 选项表示更新依赖版本。

安装更新后的依赖:运行以下命令安装更新后的依赖:

npm install
这将安装所有 package.json 中的更新后的依赖版本。

@hkai1221
Copy link

hkai1221 commented May 12, 2023

我是将所有依赖更新为最新,在重新打包好用了 要将项目中所有依赖更新为最新版本,可以使用以下步骤:

全局安装 npm-check-updates:可以使用以下命令在全局安装 npm-check-updates:

npm install -g npm-check-updates


定位到项目根目录:在命令行中定位到包含 package.json 文件的项目根目录。

运行 npm-check-updates:运行以下命令,使用 npm-check-updates 检查并更新依赖版本:

ncu -u
该命令将检查 package.json 文件中的所有依赖,并将它们的版本更新为最新版本。 -u 选项表示更新依赖版本。

安装更新后的依赖:运行以下命令安装更新后的依赖:

npm install
这将安装所有 package.json 中的更新后的依赖版本。

好像只有第一次可以监听到变化,后续改动没有反应

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
F-react Framework - React T-weapp Target - 编译到微信小程序 V-3 Version - 3.x
Projects
None yet
Development

No branches or pull requests

4 participants