Skip to content
#

yeoman-generator

Here are 655 public repositories matching this topic...

pvliss
pvliss commented Jun 14, 2019

Overview of the issue

Convert usage of Java's Optional to the Kotlin built-in null safety features.

Motivation for or Use Case

As the bulk of the Java code is now migrated to Kotlin we can start fully migrating to Kotlin using more of its built-in features. This might seem as it should have been done already but it was intentionally left out to ease the process of migration(#85) and m

OmgImAlexis
OmgImAlexis commented Sep 13, 2017
diff --git a/.babelrc b/.babelrc
index cb80719..8402d34 100644
--- a/.babelrc
+++ b/.babelrc
@@ -8,5 +8,8 @@
       "debug": false
     }]
   ],
-  "ignore": ["node_modules"]
+  "ignore": ["node_modules"],
+  "plugins": [
+      ["transform-runtime", {"polyfill": false}]
+  ]
 }
diff --git a/package.json b/package.json
index 33469fd..646f41d 100644
--- a/pack
marcinkrzeminski
marcinkrzeminski commented Oct 25, 2019

Add an option for a front-page.twig template in page.php.

Code is very similar to what we have in index.php

<?php
global $post;

$context   = \Timber\Timber::get_context();
$templates = [ 'page-' . $post->post_name . '.twig', 'page.twig' ];

if ( is_front_page() ) {
	array_unshift( $templates, 'front-page.twig' );
}
Timber::render( $templates, $context );
generator-spfx
marcDeSantis
marcDeSantis commented Mar 7, 2019

General Information

  • [X ] Usage
  • Development
  • Documentation
  • Feature Request

Specific generator

  • [X ] Addons
  • HandlebarsJS

What Version you are running?

  • NodeJS: 8.11.1
  • NPM: 6.4.1
  • @pnp/spfx: 1.6.3

Describe your problem

  1. Create a new ApplicationCustomizer Extension project using VueJS
  2. Add PlaceHolderContent dependencies as desc

Improve this page

Add a description, image, and links to the yeoman-generator topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the yeoman-generator topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.