GithubHelp home page GithubHelp logo

crodriguez1a / code-heads Goto Github PK

View Code? Open in Web Editor NEW
1.0 4.0 0.0 2.79 MB

An educational partnership between Engineers and Students

Home Page: http://crodriguez1a.github.io/code-heads/

TypeScript 50.82% HTML 32.14% JavaScript 7.72% CSS 8.67% Python 0.65%
mentoring programming coding glimmerjs redux

code-heads's People

Contributors

crodriguez1a avatar dependabot[bot] avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar

code-heads's Issues

[Website] Imported modules into Glimmer (e.g., reducers) are not automatically resolved

Custom modules should be placed in either src/utils, or inside of a collection (e.g my-component/-utils). Note that when referencing from inside a collection, -utils is pre-fixed with a hyphen. This convention is further explained in the following Glimmer issue:
glimmerjs/resolution-map-builder#8

Here's an example of file system with some custom modules added:

  my-app
├── config
│   ├── environment.js
│   ├── module-map.ts
│   └── resolver-configuration.ts
├── dist/
├── src
│   ├── utils
│   │   ├── my-modules
|   │   │   └── module.ts
│   ├── ui
│   │   ├── components
│   │   │   └── my-app
│   │   │       ├── component.ts
│   │   │       └── template.hbs
│   │   │       └── -utils
|   │   │           └── my-reducer.ts
│   │   ├── styles
│   │   │   └── app.css
│   │   └── index.html
│   ├── index.ts
│   └── main.ts
├── ember-cli-build.js
│

Spend some optimizing for mobile

Currently, the mast-head has some problems on mobile devices causing overflow. There are also some other details (only visible on mobile) that deserve attention.

[Website] Redux can't find a global reference called "process"

A check for a missing Global called process throws an error in the browser : angular-redux/store#336. Solving this required additional configuration for rollup to hard-code this value within ember-cli-build.js.

const GlimmerApp = require('@glimmer/application-pipeline').GlimmerApp;
const replace = require('rollup-plugin-replace');

module.exports = function(defaults) {
  let app = new GlimmerApp(defaults, {
    rollup: {
      plugins: [
        replace({
          'process.env.NODE_ENV': JSON.stringify( 'production' )
        })
      ]
    }
  });
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.