infernojs / create-inferno-app

Create Inferno apps with no build configuration.
MIT License
351 stars 34 forks source link

"WATcia-template asddas undefined" & Warnings on installing #95

Closed EM-LilianaIturribarria closed 9 months ago

EM-LilianaIturribarria commented 9 months ago

When installing create-inferno-app for the first time i have the following output:

 liturribarria@Lilianas-Mac-mini  ~/Sites/evolve/temp  npx create-inferno-app test-inferno-app

Creating a new Inferno app in /Users/liturribarria/Sites/evolve/temp/test-inferno-app.

WATcia-template asddas undefined <<< is this supposed to be undefined?
Installing packages. This might take a couple of minutes.
Installing inferno and inferno-scripts with cia-template...

added 1449 packages in 6s

312 packages are looking for funding
  run `npm fund` for details
(node:85950) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
(Use `node --trace-warnings ...` to show where the warning was created) <<< 1 warning

Initialized a git repository.

Installing template dependencies using npm...

added 1 package in 722ms

312 packages are looking for funding
  run `npm fund` for details
Removing template package using npm...

removed 1 package, and audited 1450 packages in 1s

312 packages are looking for funding
  run `npm fund` for details

found 0 vulnerabilities

Created git commit.

Success! Created test-inferno-app at /Users/liturribarria/Sites/evolve/temp/test-inferno-app
Inside that directory, you can run several commands:

  npm start
    Starts the development server.

  npm run build
    Bundles the app into static files for production.

  npm test
    Starts the test runner.

  npm run eject
    Removes this tool and copies build dependencies, configuration files
    and scripts into the app directory. If you do this, you can’t go back!

We suggest that you begin by typing:

  cd test-inferno-app
  npm start

Happy hacking!

then after eject and deleting the node_modules if you install the dependencies again, some warnings appear:

 liturribarria@Lilianas-Mac-mini  ~/Sites/evolve/temp/test-inferno-app   master ±✚  npm install
npm WARN deprecated rollup-plugin-terser@7.0.2: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser
npm WARN deprecated abab@2.0.6: Use your platform's native atob() and btoa() methods instead
npm WARN deprecated domexception@4.0.0: Use your platform's native DOMException instead
npm WARN deprecated sourcemap-codec@1.4.8: Please use @jridgewell/sourcemap-codec instead

added 1448 packages, and audited 1449 packages in 3s

312 packages are looking for funding
  run `npm fund` for details

found 0 vulnerabilities

thanks @Havunen for looking into this

Havunen commented 9 months ago

(node:85950) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time (Use node --trace-warnings ... to show where the warning was created) <<< 1 warning

This is expected behavior

Havunen commented 9 months ago
npm ls rollup-plugin-terser
└─┬ workbox-webpack-plugin@7.0.0
  └─┬ workbox-build@7.0.0
    └── rollup-plugin-terser@7.0.2

npm ls abab
└─┬ jest-environment-jsdom@29.7.0
  └─┬ jsdom@20.0.3
    ├── abab@2.0.6
    └─┬ data-urls@3.0.2
      └── abab@2.0.6 deduped

npm ls domexception
└─┬ jest-environment-jsdom@29.7.0
  └─┬ jsdom@20.0.3
    └── domexception@4.0.0

npm ls sourcemap-codec
└─┬ workbox-webpack-plugin@7.0.0
  └─┬ workbox-build@7.0.0
    └─┬ @rollup/plugin-replace@2.4.2
      └─┬ magic-string@0.25.9
        └── sourcemap-codec@1.4.8

I cant do much about those either they are using the latest versions

Havunen commented 9 months ago

https://github.com/GoogleChrome/workbox/pull/3240

EM-LilianaIturribarria commented 9 months ago

got it thank you @Havunen