This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const requireRegex = new RegExp(/(?:var|let|const)?\s*([^\s]+)?(\s*=\s*)?require\s*\(['"](.+)['"]\)[;,]?/, 'g'); | |
const importReplace = "import $1 from '$3';"; | |
const exportsRegex = new RegExp(/module.exports\s*=\s*/, 'g'); | |
const exportReplace = "export default "; | |
const importMissingVariable = new RegExp(/import\s*from\s*'/, 'g'); | |
const replaceMissingVariable = "import '"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
index.stache:224 Promise Error | |
at Promise.promiseThen [as then] (http://localhost:3030/node_modules/can-zone/lib/zones/globals.js:86:26) | |
at renderInZone (http://localhost:3030/src/index.stache:235:6) | |
at eval (http://localhost:3030/src/index.stache:91:17) | |
at Task.run (http://localhost:3030/node_modules/can-zone/lib/zone.js:41:17) | |
at Zone.run (http://localhost:3030/node_modules/can-zone/lib/zone.js:205:26) | |
at reattachWithZone (http://localhost:3030/src/index.stache:89:6) | |
at eval (http://localhost:3030/src/index.stache:326:6) | |
at tryCatchReject (http://localhost:3030/node_modules/steal/steal.js:1183:30) | |
(anonymous) @ index.stache:224 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Uncaught RangeError: Maximum call stack size exceeded | |
at Object.live.html (html.js:50) | |
at Text.branchRenderer (mustache_core.js:384) | |
at Text.HTMLSection.targetCallback (html_section.js:120) | |
at hydrateCallbacks (can-view-target.js:257) | |
at Object.hydrate (can-view-target.js:276) | |
at eval (html_section.js:99) | |
at eval (can-observation.js:589) | |
at eval (can-stache.js:438) | |
at eval (html_section.js:51) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// latest versions from canjs/canjs - make sure `npm install can` first | |
const canjs = require('can/package.json'); | |
const semver = require('semver'); | |
function clean(version){ | |
return version.replace(/\^/, ''); | |
} | |
/** | |
* Update packages to canjs core versions, if the canjs version is greater than the current version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// latest versions from canjs/canjs - make sure `npm install can` first | |
const canjs = require('can/package.json'); | |
function updateVersions(deps, canjs) { | |
const newDeps = {}; | |
Object.keys(deps).forEach((key) => { | |
// if dep exists in canjsDeps, set it to that version | |
// otherwise, keep existing version | |
newDeps[key] = canjs[key] || deps[key]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>CanJS</title> | |
<style> | |
html, | |
body, | |
#viewDiv { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import canSymbol from 'can-symbol'; | |
import observation from 'can-observation'; | |
import get from 'can-util/js/get/get'; | |
/** | |
* Decorate esri's observable type with canjs methods | |
* @param {esri/core/Accessor} obj the current object being accessed | |
* @param {esri/core/Accessor} parent the root parent accessor object | |
* @param {String} path the path to the value of the object from the parent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html class="no-js" lang=""> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style type="text/css"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
identify (event) { | |
this.view.popup.features = []; | |
// map existing popup promises to es6 promises, so we can use promise.all | |
const promises = this.view.popup.promises.map((p) => { | |
return new Promise((resolve) => { | |
p.then(resolve); | |
}); | |
}); |