skyltmax_config 2.0.0.beta.1 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.devcontainer/docker-compose.yml +1 -1
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +18 -18
- data/eslint.js +17 -1
- data/fixture/package.json +4 -3
- data/fixture/pnpm-lock.yaml +720 -853
- data/fixture/pnpm-workspace.yaml +4 -0
- data/lib/skyltmax_config/version.rb +1 -1
- data/package.json +18 -17
- data/pnpm-lock.yaml +1143 -1683
- data/pnpm-workspace.yaml +7 -0
- data/skyltmax_config.gemspec +3 -1
- metadata +2 -2
data/pnpm-workspace.yaml
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
allowBuilds:
|
|
2
2
|
esbuild: true
|
|
3
3
|
unrs-resolver: true
|
|
4
|
+
|
|
5
|
+
# Supply-chain settle, enforced where RESOLUTION happens (3 days, matching Renovate's npm settle). Renovate's own
|
|
6
|
+
# minimumReleaseAge does not govern lockfile maintenance — its worker runs pnpm, and pnpm reads this file.
|
|
7
|
+
minimumReleaseAge: 4320
|
|
8
|
+
# Skip re-verifying committed lockfile entries on install: entries resolved before this policy existed can be younger
|
|
9
|
+
# than the cutoff, and every commit lands via a reviewed PR, so the lockfile is the trusted base.
|
|
10
|
+
trustLockfile: true
|
data/skyltmax_config.gemspec
CHANGED
|
@@ -25,7 +25,9 @@ Gem::Specification.new do |s|
|
|
|
25
25
|
|
|
26
26
|
# include all tracked files so packaged gem mirrors the repo's config assets
|
|
27
27
|
s.files = Dir.chdir(__dir__) do
|
|
28
|
-
`git ls-files -z`.split("\x0").reject
|
|
28
|
+
`git ls-files -z`.split("\x0").reject do |path|
|
|
29
|
+
path.start_with?(".github/", "docs/") || path == "renovate.json5"
|
|
30
|
+
end
|
|
29
31
|
end
|
|
30
32
|
s.require_path = "lib"
|
|
31
33
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: skyltmax_config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.0
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Signmax AB
|
|
@@ -146,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
146
146
|
- !ruby/object:Gem::Version
|
|
147
147
|
version: '4.0'
|
|
148
148
|
requirements: []
|
|
149
|
-
rubygems_version: 4.0.
|
|
149
|
+
rubygems_version: 4.0.16
|
|
150
150
|
specification_version: 4
|
|
151
151
|
summary: Reasonable Rubocop configs.
|
|
152
152
|
test_files: []
|