As easy as 1, 2, 3!
Updated:
- Aug, 08, 2022 update
configdocs for npm 8+ - Jul 27, 2021 add private scopes
- Jul 22, 2021 add dist tags
- Jun 20, 2021 update for
--access=public - Sep 07, 2020 update docs for
npm version
| # This is a template .gitignore file for git-managed WordPress projects. | |
| # | |
| # Fact: you don't want WordPress core files, or your server-specific | |
| # configuration files etc., in your project's repository. You just don't. | |
| # | |
| # Solution: stick this file up your repository root (which it assumes is | |
| # also the WordPress root directory) and add exceptions for any plugins, | |
| # themes, and other directories that should be under version control. | |
| # | |
| # See the comments below for more info on how to add exceptions for your |
| # This is a template .gitignore file for git-managed Prestashop projects. Inspired by micahwalter wordpress gitignore | |
| #Ignore ds_store | |
| *.DS_Store | |
| # Ignore everything in the root except modules, themes and override. | |
| /* | |
| !modules/ | |
| !themes/ |
| /** | |
| * Centered Vertical line with CSS Gradient | |
| */ | |
| div { | |
| background: #fff; | |
| background: linear-gradient(180deg, transparent, #353535, transparent); | |
| background-position: 50%; | |
| background-repeat: repeat-y; | |
| background-size: 1px auto; | |
| } |
| function cssLoaded(href) { | |
| var cssFound = false; | |
| for (var i = 0; i < document.styleSheets.length; i++) { | |
| sheet = document.styleSheets[i]; | |
| if (sheet['href'].indexOf(href) >= 0 && sheet['cssRules'].length > 0) { | |
| cssFound = true; | |
| } | |
| }; |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| const R = require('ramda'); | |
| const aws = require("aws-sdk"); | |
| const { GraphQLClient } = require("graphql-request"); | |
| aws.config.update({ | |
| region: process.env.REGION | |
| }); | |
| const cognitoidentityserviceprovider = new aws.CognitoIdentityServiceProvider({ | |
| apiVersion: "2016-04-18" | |
| }); |
registry (4): delete, update, read, creategem install kamal