Skip to main content

Deploy details

Deploy successful for editr

Production: master@HEAD

Deploy log

3:36:35 PM: Build ready to start
3:36:37 PM: build-image version: 122b31996ccaffd45d820a452d6227f8312110cc (focal)
3:36:37 PM: build-image tag: v4.5.3
3:36:37 PM: buildbot version: 7eafb394e33f42f945c880ce4ac17c149867813a
3:36:37 PM: Fetching cached dependencies
3:36:37 PM: Failed to fetch cache, continuing with build
3:36:37 PM: Starting to prepare the repo for build
3:36:37 PM: No cached dependencies found. Cloning fresh repo
3:36:38 PM: Preparing Git Reference refs/heads/master
3:36:38 PM: Parsing package.json dependencies
3:36:39 PM: Starting build script
3:36:39 PM: Installing dependencies
3:36:39 PM: Python version set to 2.7
3:36:40 PM: Downloading and installing node v16.14.1...
3:36:40 PM: Computing checksum with sha256sum
3:36:41 PM: Checksums matched!
3:36:43 PM: Now using node v16.14.1 (npm v8.5.0)
3:36:43 PM: Started restoring cached build plugins
3:36:43 PM: Finished restoring cached build plugins
3:36:43 PM: Attempting ruby version 2.7.2, read from environment
3:36:44 PM: Using ruby version 2.7.2
3:36:45 PM: Using PHP version 8.0
3:36:45 PM: Started restoring cached node modules
3:36:45 PM: Finished restoring cached node modules
3:36:45 PM: Installing NPM modules using NPM version 8.5.0
3:36:56 PM: npm WARN deprecated source-map-resolve@0.6.0: See https://github.com/lydell/source-map-resolve#deprecated
3:37:03 PM: npm WARN deprecated svgo@1.3.2: This SVGO version is no longer supported. Upgrade to v2.x.x.
3:37:07 PM: added 1408 packages, and audited 1409 packages in 22s
3:37:07 PM: 169 packages are looking for funding
3:37:07 PM: run `npm fund` for details
3:37:07 PM: 6 moderate severity vulnerabilities
3:37:07 PM: To address all issues (including breaking changes), run:
3:37:07 PM: npm audit fix --force
3:37:07 PM: Run `npm audit` for details.
3:37:07 PM: NPM modules installed
3:37:07 PM: Started restoring cached go cache
3:37:07 PM: Finished restoring cached go cache
3:37:07 PM: go version go1.16.5 linux/amd64
3:37:07 PM: go version go1.16.5 linux/amd64
3:37:07 PM: Installing missing commands
3:37:07 PM: Verify run directory
3:37:09 PM:
3:37:09 PM: ────────────────────────────────────────────────────────────────
3:37:09 PM: Netlify Build
3:37:09 PM: ────────────────────────────────────────────────────────────────
3:37:09 PM:
3:37:09 PM: ❯ Version
3:37:09 PM: @netlify/build 26.4.0
3:37:09 PM:
3:37:09 PM: ❯ Flags
3:37:09 PM: baseRelDir: true
3:37:09 PM: buildId: 62320403a7347625efee38ec
3:37:09 PM: deployId: 62320403a7347625efee38ee
3:37:09 PM:
3:37:09 PM: ❯ Current directory
3:37:09 PM: /opt/build/repo
3:37:09 PM:
3:37:09 PM: ❯ Config file
3:37:09 PM: No config file was defined: using default values.
3:37:09 PM:
3:37:09 PM: ❯ Context
3:37:09 PM: production
3:37:09 PM:
3:37:09 PM: ────────────────────────────────────────────────────────────────
3:37:09 PM: 1. Build command from Netlify app
3:37:09 PM: ────────────────────────────────────────────────────────────────
3:37:09 PM: ​
3:37:09 PM: $ CI= npm run build
3:37:09 PM: > text.ly@0.1.0 build
3:37:09 PM: > react-scripts build
3:37:11 PM: Creating an optimized production build...
3:37:20 PM: Compiled with warnings.
3:37:20 PM:
3:37:20 PM: Failed to parse source map from '/opt/build/repo/node_modules/@speechly/speech-recognition-polyfill/src/createSpeechRecognition.ts' file: Error: ENOENT: no such file or directory, open '/opt/build/repo/node_modules/@speechly/speech-recognition-polyfill/src/createSpeechRecognition.ts'
3:37:20 PM: Failed to parse source map from '/opt/build/repo/node_modules/@speechly/speech-recognition-polyfill/src/index.ts' file: Error: ENOENT: no such file or directory, open '/opt/build/repo/node_modules/@speechly/speech-recognition-polyfill/src/index.ts'
3:37:20 PM: Failed to parse source map from '/opt/build/repo/node_modules/@speechly/speech-recognition-polyfill/src/types.ts' file: Error: ENOENT: no such file or directory, open '/opt/build/repo/node_modules/@speechly/speech-recognition-polyfill/src/types.ts'
3:37:20 PM: src/App.js
3:37:20 PM: Creating deploy upload records
3:37:20 PM: Line 24:33: Unnecessary escape character: \[ no-useless-escape
3:37:20 PM: Line 24:50: Unnecessary escape character: \/ no-useless-escape
3:37:20 PM: Line 29:9: 'startListening' is assigned a value but never used no-unused-vars
3:37:20 PM: Line 39:25: Assignments to the 'localcount' variable from inside React Hook useEffect will be lost after each render. To preserve the value over time, store it in a useRef Hook and keep the mutable value in the '.current' property. Otherwise, you can move this variable directly inside useEffect react-hooks/exhaustive-deps
3:37:20 PM: Line 56:6: React Hook useEffect has missing dependencies: 'text' and 'transcript'. Either include them or remove the dependency array. You can also do a functional update 'setText(t => ...)' if you only need 'text' in the 'setText' call react-hooks/exhaustive-deps
3:37:20 PM: Line 58:13: Effect callbacks are synchronous to prevent race conditions. Put the async function inside:
3:37:20 PM: useEffect(() => {
3:37:20 PM: async function fetchData() {
3:37:20 PM: // You can await here
3:37:20 PM: const response = await MyAPI.getData(someId);
3:37:20 PM: // ...
3:37:20 PM: }
3:37:20 PM: fetchData();
3:37:20 PM: }, [someId]); // Or [] if effect doesn't need props or state
3:37:20 PM: Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-fetching react-hooks/exhaustive-deps
3:37:20 PM: Line 80:9: Using target="_blank" without rel="noreferrer" (which implies rel="noopener") is a security risk in older browsers: see https://mathiasbynens.github.io/rel-noopener/#recommendations react/jsx-no-target-blank
3:37:20 PM: Line 85:9: Using target="_blank" without rel="noreferrer" (which implies rel="noopener") is a security risk in older browsers: see https://mathiasbynens.github.io/rel-noopener/#recommendations react/jsx-no-target-blank
3:37:20 PM: src/Components/Navbar/Navbar.jsx
3:37:20 PM: Line 13:11: Using target="_blank" without rel="noreferrer" (which implies rel="noopener") is a security risk in older browsers: see https://mathiasbynens.github.io/rel-noopener/#recommendations react/jsx-no-target-blank
3:37:20 PM: Line 18:11: Using target="_blank" without rel="noreferrer" (which implies rel="noopener") is a security risk in older browsers: see https://mathiasbynens.github.io/rel-noopener/#recommendations react/jsx-no-target-blank
3:37:20 PM: src/Components/Options/Options.jsx
3:37:20 PM: Line 3:8: 'headset' is defined but never used no-unused-vars
3:37:21 PM: Starting post processing
3:37:20 PM: Line 4:8: 'headset_on' is defined but never used no-unused-vars
3:37:20 PM: Line 5:8: 'trash' is defined but never used no-unused-vars
3:37:20 PM: Line 6:8: 'star' is defined but never used no-unused-vars
3:37:21 PM: Post processing - HTML
3:37:20 PM: Line 33:9: Using target="_blank" without rel="noreferrer" (which implies rel="noopener") is a security risk in older browsers: see https://mathiasbynens.github.io/rel-noopener/#recommendations react/jsx-no-target-blank
3:37:20 PM: Search for the keywords to learn more about each warning.
3:37:20 PM: To ignore, add // eslint-disable-next-line to the line before.
3:37:20 PM: File sizes after gzip:
3:37:20 PM: 72.49 kB build/static/js/main.2c9e9c08.js
3:37:20 PM: 1.31 kB build/static/css/main.f4da4912.css
3:37:20 PM: The project was built assuming it is hosted at /.
3:37:22 PM: Post processing - header rules
3:37:20 PM: You can control this with the homepage field in your package.json.
3:37:20 PM: The build folder is ready to be deployed.
3:37:20 PM: You may serve it with a static server:
3:37:22 PM: Post processing - redirect rules
3:37:20 PM: npm install -g serve
3:37:20 PM: serve -s build
3:37:20 PM: Find out more about deployment here:
3:37:22 PM: Post processing done
3:37:20 PM: ​
3:37:20 PM: (build.command completed in 11.5s)
3:37:20 PM:
3:37:20 PM: ────────────────────────────────────────────────────────────────
3:37:20 PM: 2. Deploy site
3:37:20 PM: ────────────────────────────────────────────────────────────────
3:37:20 PM: ​
3:37:20 PM: Starting to deploy site from 'build'
3:37:20 PM: Creating deploy tree
3:37:21 PM: 8 new files to upload
3:37:21 PM: 0 new functions to upload
3:37:21 PM: Site deploy was successfully initiated
3:37:21 PM: ​
3:37:21 PM: (Deploy site completed in 893ms)
3:37:21 PM:
3:37:21 PM: ────────────────────────────────────────────────────────────────
3:37:21 PM: Netlify Build Complete
3:37:21 PM: ────────────────────────────────────────────────────────────────
3:37:21 PM: ​
3:37:21 PM: (Netlify Build completed in 12.4s)
3:37:21 PM: Caching artifacts
3:37:21 PM: Started saving node modules
3:37:21 PM: Finished saving node modules
3:37:21 PM: Started saving build plugins
3:37:22 PM: Finished saving build plugins
3:37:22 PM: Started saving pip cache
3:37:22 PM: Finished saving pip cache
3:37:22 PM: Started saving emacs cask dependencies
3:37:22 PM: Finished saving emacs cask dependencies
3:37:22 PM: Started saving maven dependencies
3:37:22 PM: Finished saving maven dependencies
3:37:22 PM: Started saving boot dependencies
3:37:22 PM: Finished saving boot dependencies
3:37:22 PM: Started saving rust rustup cache
3:37:22 PM: Finished saving rust rustup cache
3:37:22 PM: Started saving go dependencies
3:37:22 PM: Finished saving go dependencies
3:37:23 PM: Build script success
3:37:25 PM: Site is live ✨
3:37:52 PM: Finished processing build request in 1m15.524024439s