Fix bin/publish: copy docs.dist from project root

Fix bin/publish: use correct .env path for rspade_system
Fix bin/publish script: prevent grep exit code 1 from terminating script

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-10-21 02:08:33 +00:00
commit f6fac6c4bc
79758 changed files with 10547827 additions and 0 deletions

39
vendor/spatie/ignition/node_modules/is-string/test/index.js generated vendored Executable file
View File

@@ -0,0 +1,39 @@
'use strict';
var test = require('tape');
var isString = require('../');
var hasSymbols = typeof Symbol === 'function' && typeof Symbol.iterator !== 'undefined';
test('not Strings', function (t) {
t.notOk(isString(), 'undefined is not String');
t.notOk(isString(null), 'null is not String');
t.notOk(isString(false), 'false is not String');
t.notOk(isString(true), 'true is not String');
t.notOk(isString([]), 'array is not String');
t.notOk(isString({}), 'object is not String');
t.notOk(isString(function () {}), 'function is not String');
t.notOk(isString(/a/g), 'regex literal is not String');
t.notOk(isString(new RegExp('a', 'g')), 'regex object is not String');
t.notOk(isString(new Date()), 'new Date() is not String');
t.notOk(isString(42), 'number is not String');
t.notOk(isString(Object(42)), 'number object is not String');
t.notOk(isString(NaN), 'NaN is not String');
t.notOk(isString(Infinity), 'Infinity is not String');
t.end();
});
test('@@toStringTag', { skip: !hasSymbols || !Symbol.toStringTag }, function (t) {
var fakeString = {
toString: function () { return '7'; },
valueOf: function () { return '42'; }
};
fakeString[Symbol.toStringTag] = 'String';
t.notOk(isString(fakeString), 'fake String with @@toStringTag "String" is not String');
t.end();
});
test('Strings', function (t) {
t.ok(isString('foo'), 'string primitive is String');
t.ok(isString(Object('foo')), 'string object is String');
t.end();
});