The Wayback Machine - https://web.archive.org/web/20210901074955/https://github.com/topics/compiler
Skip to content
#

Compiler

Compilers are software that translate higher-level (more human readable) programming languages to lower-level languages (e.g. machine code). The processor executes machine code, which indicates when binary high and low signals are required in the arithmetic logic unit of the processor. Examples of compiled languages include BASIC, Fortran, C++, C, and Java.

Here are 5,949 public repositories matching this topic...

next.js
ScriptedAlchemy
ScriptedAlchemy commented Aug 19, 2021

What version of Next.js are you using?

11.1.0

What version of Node.js are you using?

14

What browser are you using?

chrome

What operating system are you using?

macOS

How are you deploying your application?

Other (serverless aws)

Describe the Bug

When importing images into _document next does not emit these image assets into the client build.

For example, I

A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.
  • Updated Sep 1, 2021
  • JavaScript
svelte
henriquez
henriquez commented May 31, 2020

Describe the bug
I'm using rollup to bundle dependencies (for a Svelte framework web app) but having trouble importing and using markedjs. It appears the library was recently ported to ESM modules, but I don't see any documentation on how to use as such. The standard syntax to import ES6 modules give me errors:

import { marked } from 'marked.esm';
returns
(!) Unresolved dependencies

Nim
numba
brandonwillard
brandonwillard commented Aug 29, 2021

The conversion for np.ascontiguousarray doesn't appear to handle scalar inputs:

import numpy as np
import numba as nb


@nb.njit
def test_fn(x):
    return np.ascontiguousarray(x)


test_fn(1)
# ...
# TypingError: Failed in nopython mode pipeline (step: nopython frontend)
# No implementation of function Function(<function ascontiguousarray at 0x7fdd294aab00>) found for si