Skip to content

Commit badeac6

Browse files
authored
Pin setup atmos github action (#54)
* Pin setup atmos github action * Update contents of the dist directory --------- Co-authored-by: goruha <[email protected]>
1 parent 6b1b99a commit badeac6

File tree

4 files changed

+19
-21
lines changed

4 files changed

+19
-21
lines changed

.github/workflows/build-and-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
cache: yarn
3030
- name: install dependencies
3131
run: yarn install --frozen-lockfile --prefer-offline
32-
- uses: cloudposse/github-action-setup-atmos@v1
32+
- uses: cloudposse/github-action-setup-atmos@v2
3333
with:
3434
install-wrapper: false
3535
- name: run unit tests
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
node-version-file: package.json
4949
cache: yarn
50-
- uses: cloudposse/github-action-setup-atmos@v1
50+
- uses: cloudposse/github-action-setup-atmos@v2
5151
with:
5252
install-wrapper: false
5353
- uses: ./
@@ -73,7 +73,7 @@ jobs:
7373
with:
7474
node-version-file: package.json
7575
cache: yarn
76-
- uses: cloudposse/github-action-setup-atmos@v1
76+
- uses: cloudposse/github-action-setup-atmos@v2
7777
with:
7878
install-wrapper: false
7979
- uses: ./

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ out
8989

9090
# Nuxt.js build / generate output
9191
.nuxt
92-
dist
9392

9493
# Gatsby files
9594
.cache/

dist/index.js

+15-16
Original file line numberDiff line numberDiff line change
@@ -32387,19 +32387,19 @@ function foldNewline(source, offset) {
3238732387
return { fold, offset };
3238832388
}
3238932389
const escapeCodes = {
32390-
'0': '\0',
32391-
a: '\x07',
32392-
b: '\b',
32393-
e: '\x1b',
32394-
f: '\f',
32395-
n: '\n',
32396-
r: '\r',
32397-
t: '\t',
32398-
v: '\v',
32399-
N: '\u0085',
32400-
_: '\u00a0',
32401-
L: '\u2028',
32402-
P: '\u2029',
32390+
'0': '\0', // null character
32391+
a: '\x07', // bell character
32392+
b: '\b', // backspace
32393+
e: '\x1b', // escape character
32394+
f: '\f', // form feed
32395+
n: '\n', // line feed
32396+
r: '\r', // carriage return
32397+
t: '\t', // horizontal tab
32398+
v: '\v', // vertical tab
32399+
N: '\u0085', // Unicode next line
32400+
_: '\u00a0', // Unicode non-breaking space
32401+
L: '\u2028', // Unicode line separator
32402+
P: '\u2029', // Unicode paragraph separator
3240332403
' ': ' ',
3240432404
'"': '"',
3240532405
'/': '/',
@@ -37386,7 +37386,7 @@ var Scalar = __nccwpck_require__(9338);
3738637386
var stringifyString = __nccwpck_require__(6226);
3738737387

3738837388
const binary = {
37389-
identify: value => value instanceof Uint8Array,
37389+
identify: value => value instanceof Uint8Array, // Buffer inherits from Uint8Array
3739037390
default: false,
3739137391
tag: 'tag:yaml.org,2002:binary',
3739237392
/**
@@ -38359,7 +38359,6 @@ exports.stringify = stringify;
3835938359
"use strict";
3836038360

3836138361

38362-
var Collection = __nccwpck_require__(3466);
3836338362
var identity = __nccwpck_require__(5589);
3836438363
var stringify = __nccwpck_require__(8409);
3836538364
var stringifyComment = __nccwpck_require__(5182);
@@ -38481,7 +38480,7 @@ function stringifyFlowCollection({ comment, items }, ctx, { flowChars, itemInden
3848138480
else {
3848238481
if (!reqNewline) {
3848338482
const len = lines.reduce((sum, line) => sum + line.length + 2, 2);
38484-
reqNewline = len > Collection.Collection.maxFlowStringSingleLineLength;
38483+
reqNewline = ctx.options.lineWidth > 0 && len > ctx.options.lineWidth;
3848538484
}
3848638485
if (reqNewline) {
3848738486
str = start;

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)