trek 0.1.27 → 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/.yarnrc.yml +0 -6
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +1 -1
- data/Makefile +1 -1
- data/README.md +12 -44
- data/docs/getting-started.md +6 -32
- data/lib/generators/trek/install/assets_generator.rb +1 -1
- data/lib/generators/trek/install/yarn_generator.rb +5 -11
- data/lib/generators/trek/templates/AGENTS.md +2 -2
- data/lib/generators/trek/templates/package.json.tt +2 -2
- data/lib/generators/trek/upgrade/v2_generator.rb +19 -2
- data/lib/trek/version.rb +1 -1
- data/package.json +13 -3
- data/trek.gemspec +4 -4
- data/yarn.lock +46 -46
- metadata +7 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae0f648a6ca1125a784ae4d052017885274c6b8856eeba469b59eba1e5af8809
|
|
4
|
+
data.tar.gz: cfe7b5cf820ed4a86d519217d1f4d5a226f8a76a90edbb247d2eca9ec69c9a15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7bba7c7c0afc04dcbcd2413395977cf9521ef35ae433a2799292d3ae3525cb2d5a27f3d5a99c726145e5b2890455302c620adbd8405b823cca00eddeb46b721
|
|
7
|
+
data.tar.gz: 06e1be7336b7c5464d9cbcc0beffadba2a20c742fe40735f06c7cced96a28b326d1ec08f3ebc1581dc31b2e6761f3d7d617c69a96b72ef0b921b35ceb1f18b4b
|
data/.yarnrc.yml
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
nodeLinker: node-modules
|
|
2
2
|
|
|
3
|
-
npmScopes:
|
|
4
|
-
etaminstudio:
|
|
5
|
-
npmAlwaysAuth: true
|
|
6
|
-
npmAuthToken: "${NPM_AUTH_TOKEN-fallback}"
|
|
7
|
-
npmPublishRegistry: "https://git.etamin.studio/api/v4/projects/229/packages/npm/"
|
|
8
|
-
|
|
9
3
|
plugins:
|
|
10
4
|
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
|
|
11
5
|
spec: "@yarnpkg/plugin-interactive-tools"
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [2.0.0] - 2026-08-18
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Trek's packages are now **public-only** (#197): the gem is consumed from [RubyGems](https://rubygems.org/gems/trek) and the npm package — renamed from `@etaminstudio/trek` to the unscoped [`trek`](https://www.npmjs.com/package/trek) — is published to npmjs.com. Nothing is published to the private GitLab registries any more, and no deploy token is needed. Because the previous owner of the npm `trek` name had already published versions up to `1.0.0` (npm never frees version numbers), Trek jumps straight to **2.0.0**, keeping gem and npm versions in lockstep. **Upgrade note:** existing apps upgrade by moving to 0.1.27 first, then running `rails g trek:upgrade:v2` (see 0.1.27's changelog entry) — the generator now also adds the `npmPreapprovedPackages` exemption below. Afterwards, remove the now-unneeded CI variables — `NPM_AUTH_TOKEN` and `BUNDLE_GIT__ETAMIN__STUDIO` (spelled `BUNDLE_GIT__ETAMINSTUD__IO` on apps created before the domain migration) — along with any local `TREK_DEPLOY_TOKEN` export, and revoke the project's Trek deploy token on GitLab.
|
|
8
|
+
- `trek:install` now wires new apps to the public packages: the generated `package.json` depends on `trek`, the JS entrypoint imports `"trek"`, and the generated `.yarnrc.yml` no longer configures the GitLab registry/scope — instead it lists `trek` under `npmPreapprovedPackages`, exempting it from Yarn's package gates (minimal age, …) so fresh releases install without the quarantine delay.
|
|
9
|
+
- The published npm tarball now only contains what host apps consume — `app/javascript`, `app/assets/{icons,images,stylesheets}` and the components' JS/CSS sidecars — instead of the whole repository (Ruby engine code, specs, docs, local config…).
|
|
10
|
+
- Package metadata refresh for the public listings: description "A modern content management & back-office system for Ruby on Rails" and homepage <https://trek.etamin.studio> on both the gemspec and `package.json`, plus an explicit MIT license on both.
|
|
11
|
+
- `make release` now publishes the npm package with `npm publish` (requires `npm login` as a `trek` maintainer) instead of `yarn npm publish` to the GitLab registry.
|
|
12
|
+
|
|
3
13
|
## [0.1.27] - 2026-08-18
|
|
4
14
|
|
|
5
15
|
### Added
|
data/Gemfile.lock
CHANGED
data/Makefile
CHANGED
data/README.md
CHANGED
|
@@ -7,8 +7,8 @@ Trek is a modern content management system for Ruby on Rails, that is designed t
|
|
|
7
7
|
- Rails 7.0+
|
|
8
8
|
- Ruby 3.1+
|
|
9
9
|
- PostgreSQL 12+
|
|
10
|
-
- Node
|
|
11
|
-
- Yarn
|
|
10
|
+
- Node 22+
|
|
11
|
+
- Yarn 4.x
|
|
12
12
|
- libvips
|
|
13
13
|
|
|
14
14
|
### Dependencies
|
|
@@ -32,19 +32,19 @@ You don't have to set them up yourself, but you can customize their configuratio
|
|
|
32
32
|
Make sure your default Rails version is 7.0+
|
|
33
33
|
|
|
34
34
|
$ rails -v
|
|
35
|
-
Rails
|
|
35
|
+
Rails 8.1.3
|
|
36
36
|
|
|
37
37
|
If not, run `gem install rails` to upgrade.
|
|
38
38
|
|
|
39
|
-
Make sure your default Yarn version is
|
|
39
|
+
Make sure your default Yarn version is 4.x
|
|
40
40
|
|
|
41
41
|
$ yarn -v
|
|
42
|
-
|
|
42
|
+
4.17.0
|
|
43
43
|
|
|
44
44
|
If not, run:
|
|
45
45
|
|
|
46
46
|
corepack enable
|
|
47
|
-
corepack install --global yarn@
|
|
47
|
+
corepack install --global yarn@4
|
|
48
48
|
|
|
49
49
|
Create your Rails project (replace `helloworld` with your own project name):
|
|
50
50
|
|
|
@@ -52,31 +52,11 @@ Create your Rails project (replace `helloworld` with your own project name):
|
|
|
52
52
|
rails new $TREK_PROJECT_NAME -j esbuild -d postgresql --skip-action-mailbox --skip-action-text --skip-action-cable --skip-active-storage --skip-jbuilder --skip-test --skip-system-test
|
|
53
53
|
cd $TREK_PROJECT_NAME
|
|
54
54
|
|
|
55
|
-
[Create a deploy token](https://git.etamin.studio/etaminstudio/trek/-/settings/repository#js-deploy-tokens) associated to Trek project:
|
|
56
|
-
|
|
57
|
-
- Name: `helloworld` (replace with your project name)
|
|
58
|
-
- Username: `helloworld` (replace with your project name)
|
|
59
|
-
- Scopes: `read_repository`, `read_package_registry`
|
|
60
|
-
|
|
61
|
-
Copy the generated token to an ENV variable (replace `XXXXXXXXXXX` with the token generated by Gitlab):
|
|
62
|
-
|
|
63
|
-
export TREK_DEPLOY_TOKEN=XXXXXXXXXXX
|
|
64
|
-
|
|
65
55
|
### Install the gem
|
|
66
56
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
bundle config git.etamin.studio $TREK_PROJECT_NAME:$TREK_DEPLOY_TOKEN
|
|
70
|
-
|
|
71
|
-
Install the gem and add it to the application's Gemfile by running:
|
|
72
|
-
|
|
73
|
-
bundle add trek --git https://git.etamin.studio/etaminstudio/trek.git --branch main
|
|
57
|
+
Trek is distributed publicly: the gem on [RubyGems](https://rubygems.org/gems/trek) and the [`trek` npm package](https://www.npmjs.com/package/trek) on npmjs.com (the installer adds the latter to your `package.json`). Install the gem and add it to the application's Gemfile by running:
|
|
74
58
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
Prepare the NPM package installation by running:
|
|
78
|
-
|
|
79
|
-
export NPM_AUTH_TOKEN=$TREK_DEPLOY_TOKEN
|
|
59
|
+
bundle add trek
|
|
80
60
|
|
|
81
61
|
### Run the installer
|
|
82
62
|
|
|
@@ -134,8 +114,8 @@ The title and subtitle are customizable in the locales, with the following keys:
|
|
|
134
114
|
en:
|
|
135
115
|
admin:
|
|
136
116
|
brand:
|
|
137
|
-
|
|
138
|
-
|
|
117
|
+
title: My project
|
|
118
|
+
subtitle: Back-office
|
|
139
119
|
```
|
|
140
120
|
|
|
141
121
|
### Useful commands
|
|
@@ -146,18 +126,6 @@ Customize the credentials with `ADMIN_EMAIL` and `ADMIN_PASSWORD` ENV variables
|
|
|
146
126
|
|
|
147
127
|
rails g trek:admin:user
|
|
148
128
|
|
|
149
|
-
## CI setup
|
|
150
|
-
|
|
151
|
-
### Gitlab
|
|
152
|
-
|
|
153
|
-
Once your project is created on Gitlab, go to `Settings` > `CI/CD` > `Variables` > `Add variable` and use these values:
|
|
154
|
-
|
|
155
|
-
- Key: `BUNDLE_GIT__ETAMINSTUD__IO`
|
|
156
|
-
- Value: `helloworld:YOUR_DEPLOY_TOKEN` (replace with your project name)
|
|
157
|
-
|
|
158
|
-
- Key: `NPM_AUTH_TOKEN`
|
|
159
|
-
- Value: `YOUR_DEPLOY_TOKEN`
|
|
160
|
-
|
|
161
129
|
## Development
|
|
162
130
|
|
|
163
131
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
@@ -196,7 +164,7 @@ When you're done, disable the local version:
|
|
|
196
164
|
|
|
197
165
|
Don't forget to revert to a released verion in your `Gemfile`:
|
|
198
166
|
|
|
199
|
-
gem "trek", "~> 0
|
|
167
|
+
gem "trek", "~> 2.0"
|
|
200
168
|
|
|
201
169
|
#### Linking to the local NPM package with Yarn
|
|
202
170
|
|
|
@@ -229,4 +197,4 @@ This will:
|
|
|
229
197
|
3. Run `bundle` to update the lockfile
|
|
230
198
|
4. Commit all changes with message "Version X.Y.Z"
|
|
231
199
|
5. Run `bundle exec rake release` (creates git tag, pushes commits/tag, pushes gem to [rubygems.org](https://rubygems.org))
|
|
232
|
-
6. Run `
|
|
200
|
+
6. Run `npm publish` (publishes the [npm package](https://www.npmjs.com/package/trek) to npmjs.com). This requires being logged in to npmjs (`npm login`) as a maintainer of the `trek` package.
|
data/docs/getting-started.md
CHANGED
|
@@ -9,8 +9,8 @@ Make sure the following are installed:
|
|
|
9
9
|
- Ruby 3.1+
|
|
10
10
|
- Rails 7.0+
|
|
11
11
|
- PostgreSQL 12+
|
|
12
|
-
- Node
|
|
13
|
-
- Yarn
|
|
12
|
+
- Node 22+
|
|
13
|
+
- Yarn 4.x
|
|
14
14
|
- libvips
|
|
15
15
|
|
|
16
16
|
Check your Rails version:
|
|
@@ -27,11 +27,11 @@ Check your Yarn version:
|
|
|
27
27
|
yarn -v
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
If it's not a
|
|
30
|
+
If it's not a 4.x version, run:
|
|
31
31
|
|
|
32
32
|
```sh
|
|
33
33
|
corepack enable
|
|
34
|
-
corepack install --global yarn@
|
|
34
|
+
corepack install --global yarn@4
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
## Create your Rails project
|
|
@@ -46,38 +46,12 @@ rails new $TREK_PROJECT_NAME -j esbuild -d postgresql \
|
|
|
46
46
|
cd $TREK_PROJECT_NAME
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
## Get access to Trek
|
|
50
|
-
|
|
51
|
-
Trek is distributed as a gem and an NPM package from Etamin Studio's GitLab. [Create a deploy token](https://git.etamin.studio/etaminstudio/trek/-/settings/repository#js-deploy-tokens) associated to the Trek project:
|
|
52
|
-
|
|
53
|
-
- **Name**: your project name (e.g. `helloworld`)
|
|
54
|
-
- **Username**: your project name (e.g. `helloworld`)
|
|
55
|
-
- **Scopes**: `read_repository`, `read_package_registry`
|
|
56
|
-
|
|
57
|
-
Export the generated token (replace `XXXXXXXXXXX`):
|
|
58
|
-
|
|
59
|
-
```sh
|
|
60
|
-
export TREK_DEPLOY_TOKEN=XXXXXXXXXXX
|
|
61
|
-
```
|
|
62
|
-
|
|
63
49
|
## Install the gem
|
|
64
50
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
```sh
|
|
68
|
-
bundle config git.etamin.studio $TREK_PROJECT_NAME:$TREK_DEPLOY_TOKEN
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
Install the gem and add it to your `Gemfile`:
|
|
72
|
-
|
|
73
|
-
```sh
|
|
74
|
-
bundle add trek --git https://git.etamin.studio/etaminstudio/trek.git --branch main
|
|
75
|
-
```
|
|
76
|
-
|
|
77
|
-
Prepare the NPM package installation:
|
|
51
|
+
Trek is distributed publicly: the gem on [RubyGems](https://rubygems.org/gems/trek) and the [`trek` npm package](https://www.npmjs.com/package/trek) on npmjs.com (the installer adds the latter to your `package.json`). Install the gem and add it to your `Gemfile`:
|
|
78
52
|
|
|
79
53
|
```sh
|
|
80
|
-
|
|
54
|
+
bundle add trek
|
|
81
55
|
```
|
|
82
56
|
|
|
83
57
|
## Run the installer
|
|
@@ -55,17 +55,11 @@ module Trek
|
|
|
55
55
|
<<~YAML
|
|
56
56
|
nodeLinker: node-modules
|
|
57
57
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
npmScopes:
|
|
64
|
-
etaminstudio:
|
|
65
|
-
npmRegistryServer: "https://git.etamin.studio/api/v4/packages/npm"
|
|
66
|
-
# Our own registry — skip Yarn's minimal-age gate so a freshly
|
|
67
|
-
# published Trek release installs without the quarantine delay.
|
|
68
|
-
npmMinimalAgeGate: 0
|
|
58
|
+
# Trek is our own package — exempt it from Yarn's package gates
|
|
59
|
+
# (minimal age, …) so a freshly published release installs without
|
|
60
|
+
# the quarantine delay.
|
|
61
|
+
npmPreapprovedPackages:
|
|
62
|
+
- trek
|
|
69
63
|
YAML
|
|
70
64
|
end
|
|
71
65
|
|
|
@@ -27,10 +27,10 @@ This is a Ruby on Rails application whose back-office/admin is built with **Trek
|
|
|
27
27
|
|
|
28
28
|
## Upgrading Trek
|
|
29
29
|
|
|
30
|
-
**Whenever you bump the `trek` gem — and its companion
|
|
30
|
+
**Whenever you bump the `trek` gem — and its companion `trek` npm package — always:**
|
|
31
31
|
|
|
32
32
|
1. **Read Trek's `CHANGELOG.md`** for every version between the installed and target version, not just the latest.
|
|
33
33
|
2. **Apply every "Upgrade note".** These are the manual steps host apps must perform (config tweaks, new initializers, regenerated files, data migrations). Do not skip them — the upgrade is not complete until each is applied.
|
|
34
34
|
3. **Remove now-redundant local code.** Where the changelog says a Trek change lets host apps drop or simplify a local patch, monkey-patch, or custom implementation, delete that code as part of the upgrade.
|
|
35
|
-
4. **Keep versions aligned**: the `trek` gem version and the
|
|
35
|
+
4. **Keep versions aligned**: the `trek` gem version and the `trek` npm version must match.
|
|
36
36
|
5. **Verify**: run `make lint` and `make test` before committing the upgrade.
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"name": "<%= application_name.downcase %>",
|
|
3
3
|
"private": true,
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@etaminstudio/trek": "^<%= Trek::VERSION %>",
|
|
6
5
|
"@hotwired/stimulus": "^3.2.2",
|
|
7
|
-
"@hotwired/turbo-rails": "^8.0.0"
|
|
6
|
+
"@hotwired/turbo-rails": "^8.0.0",
|
|
7
|
+
"trek": "^<%= Trek::VERSION %>"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "node esbuild.config.js"
|
|
@@ -66,6 +66,20 @@ module Trek
|
|
|
66
66
|
"and the etaminstudio scope manually.", :yellow
|
|
67
67
|
end
|
|
68
68
|
|
|
69
|
+
def preapprove_npm_package
|
|
70
|
+
return unless File.exist?(".yarnrc.yml")
|
|
71
|
+
return if File.read(".yarnrc.yml").include?("npmPreapprovedPackages")
|
|
72
|
+
|
|
73
|
+
append_to_file ".yarnrc.yml", <<~YAML
|
|
74
|
+
|
|
75
|
+
# Trek is our own package — exempt it from Yarn's package gates
|
|
76
|
+
# (minimal age, …) so a freshly published release installs without
|
|
77
|
+
# the quarantine delay.
|
|
78
|
+
npmPreapprovedPackages:
|
|
79
|
+
- trek
|
|
80
|
+
YAML
|
|
81
|
+
end
|
|
82
|
+
|
|
69
83
|
def install_npm_package
|
|
70
84
|
install_npm_dependencies({ "trek" => NPM_REQUIREMENT })
|
|
71
85
|
end
|
|
@@ -77,8 +91,11 @@ module Trek
|
|
|
77
91
|
|
|
78
92
|
Manual follow-ups:
|
|
79
93
|
* Remove the NPM_AUTH_TOKEN variable and the Bundler credentials for
|
|
80
|
-
git.etamin.studio (BUNDLE_GIT__ETAMIN__STUDIO
|
|
81
|
-
|
|
94
|
+
git.etamin.studio (BUNDLE_GIT__ETAMIN__STUDIO — spelled
|
|
95
|
+
BUNDLE_GIT__ETAMINSTUD__IO on apps created before the domain
|
|
96
|
+
migration) from your CI settings, and drop any local
|
|
97
|
+
TREK_DEPLOY_TOKEN export.
|
|
98
|
+
* Revoke this project's Trek deploy token on GitLab.
|
|
82
99
|
SUMMARY
|
|
83
100
|
end
|
|
84
101
|
end
|
data/lib/trek/version.rb
CHANGED
data/package.json
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "A modern
|
|
2
|
+
"name": "trek",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "A modern content management & back-office system for Ruby on Rails",
|
|
5
|
+
"homepage": "https://trek.etamin.studio",
|
|
6
|
+
"license": "MIT",
|
|
5
7
|
"main": "app/javascript/trek.js",
|
|
8
|
+
"files": [
|
|
9
|
+
"app/assets/icons/**",
|
|
10
|
+
"app/assets/images/**",
|
|
11
|
+
"app/assets/stylesheets/**",
|
|
12
|
+
"app/components/**/*.js",
|
|
13
|
+
"app/components/**/*.css",
|
|
14
|
+
"app/javascript/**"
|
|
15
|
+
],
|
|
6
16
|
"repository": {
|
|
7
17
|
"type": "git",
|
|
8
18
|
"url": "git@git.etamin.studio:etaminstudio/trek.git"
|
data/trek.gemspec
CHANGED
|
@@ -8,13 +8,13 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ["Mohamed Bengrich", "Hugo Chantelauze", "Lucas Heymès", "Hans Lemuet"]
|
|
9
9
|
spec.email = ["team@etamin.studio"]
|
|
10
10
|
|
|
11
|
-
spec.summary = "A modern
|
|
12
|
-
spec.homepage = "https://etamin.studio"
|
|
11
|
+
spec.summary = "A modern content management & back-office system for Ruby on Rails"
|
|
12
|
+
spec.homepage = "https://trek.etamin.studio"
|
|
13
|
+
spec.license = "MIT"
|
|
13
14
|
spec.required_ruby_version = ">= 3.1.0"
|
|
14
15
|
|
|
15
16
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
16
|
-
|
|
17
|
-
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
|
17
|
+
spec.metadata["documentation_uri"] = spec.homepage
|
|
18
18
|
|
|
19
19
|
# Specify which files should be added to the gem when it is released.
|
|
20
20
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
data/yarn.lock
CHANGED
|
@@ -877,52 +877,6 @@ __metadata:
|
|
|
877
877
|
languageName: node
|
|
878
878
|
linkType: hard
|
|
879
879
|
|
|
880
|
-
"@etaminstudio/trek@workspace:.":
|
|
881
|
-
version: 0.0.0-use.local
|
|
882
|
-
resolution: "@etaminstudio/trek@workspace:."
|
|
883
|
-
dependencies:
|
|
884
|
-
"@hotwired/stimulus": ^3.2.2
|
|
885
|
-
"@hotwired/turbo-rails": ^8.0.20
|
|
886
|
-
"@radix-ui/colors": ^3.0.0
|
|
887
|
-
"@tiptap/core": ^2.1.11
|
|
888
|
-
"@tiptap/extension-floating-menu": ^2.1.11
|
|
889
|
-
"@tiptap/extension-link": ^2.1.11
|
|
890
|
-
"@tiptap/extension-placeholder": ^2.1.11
|
|
891
|
-
"@tiptap/pm": ^2.1.11
|
|
892
|
-
"@tiptap/starter-kit": ^2.1.11
|
|
893
|
-
"@uppy/core": ^3.0.4
|
|
894
|
-
"@uppy/locales": ^3.0.1
|
|
895
|
-
"@uppy/thumbnail-generator": ^3.0.2
|
|
896
|
-
"@uppy/xhr-upload": ^3.0.4
|
|
897
|
-
esbuild: ^0.28.0
|
|
898
|
-
esbuild-rails: ^1.0.7
|
|
899
|
-
esbuild-style-plugin: ^1.6.3
|
|
900
|
-
eslint: ^8.49.0
|
|
901
|
-
eslint-config-prettier: ^8.10.2
|
|
902
|
-
hotkeys-js: ^3.13.15
|
|
903
|
-
normalize.css: ^8.0.1
|
|
904
|
-
postcss: ^8.4.30
|
|
905
|
-
postcss-cli: ^10.1.0
|
|
906
|
-
postcss-flexbugs-fixes: ^5.0.2
|
|
907
|
-
postcss-import: ^15.1.0
|
|
908
|
-
postcss-inline-svg: ^5.0.0
|
|
909
|
-
postcss-modules: ^5.0.0
|
|
910
|
-
postcss-nesting: ^10.2.0
|
|
911
|
-
postcss-preset-env: ^7.8.3
|
|
912
|
-
postcss-url: ^10.1.3
|
|
913
|
-
prettier: 2.8.8
|
|
914
|
-
slugify: ^1.6.6
|
|
915
|
-
sortablejs: ^1.15.6
|
|
916
|
-
stimulus-use: ^0.52.3
|
|
917
|
-
stylelint: ^15.11.0
|
|
918
|
-
stylelint-config-standard: ^31.0.0
|
|
919
|
-
stylelint-order: ^6.0.4
|
|
920
|
-
tom-select: ^2.2.2
|
|
921
|
-
vitepress: ^1.6.4
|
|
922
|
-
vitepress-plugin-llms: ^1.13.1
|
|
923
|
-
languageName: unknown
|
|
924
|
-
linkType: soft
|
|
925
|
-
|
|
926
880
|
"@hotwired/stimulus@npm:^3.2.2":
|
|
927
881
|
version: 3.2.2
|
|
928
882
|
resolution: "@hotwired/stimulus@npm:3.2.2"
|
|
@@ -6653,6 +6607,52 @@ __metadata:
|
|
|
6653
6607
|
languageName: node
|
|
6654
6608
|
linkType: hard
|
|
6655
6609
|
|
|
6610
|
+
"trek@workspace:.":
|
|
6611
|
+
version: 0.0.0-use.local
|
|
6612
|
+
resolution: "trek@workspace:."
|
|
6613
|
+
dependencies:
|
|
6614
|
+
"@hotwired/stimulus": ^3.2.2
|
|
6615
|
+
"@hotwired/turbo-rails": ^8.0.20
|
|
6616
|
+
"@radix-ui/colors": ^3.0.0
|
|
6617
|
+
"@tiptap/core": ^2.1.11
|
|
6618
|
+
"@tiptap/extension-floating-menu": ^2.1.11
|
|
6619
|
+
"@tiptap/extension-link": ^2.1.11
|
|
6620
|
+
"@tiptap/extension-placeholder": ^2.1.11
|
|
6621
|
+
"@tiptap/pm": ^2.1.11
|
|
6622
|
+
"@tiptap/starter-kit": ^2.1.11
|
|
6623
|
+
"@uppy/core": ^3.0.4
|
|
6624
|
+
"@uppy/locales": ^3.0.1
|
|
6625
|
+
"@uppy/thumbnail-generator": ^3.0.2
|
|
6626
|
+
"@uppy/xhr-upload": ^3.0.4
|
|
6627
|
+
esbuild: ^0.28.0
|
|
6628
|
+
esbuild-rails: ^1.0.7
|
|
6629
|
+
esbuild-style-plugin: ^1.6.3
|
|
6630
|
+
eslint: ^8.49.0
|
|
6631
|
+
eslint-config-prettier: ^8.10.2
|
|
6632
|
+
hotkeys-js: ^3.13.15
|
|
6633
|
+
normalize.css: ^8.0.1
|
|
6634
|
+
postcss: ^8.4.30
|
|
6635
|
+
postcss-cli: ^10.1.0
|
|
6636
|
+
postcss-flexbugs-fixes: ^5.0.2
|
|
6637
|
+
postcss-import: ^15.1.0
|
|
6638
|
+
postcss-inline-svg: ^5.0.0
|
|
6639
|
+
postcss-modules: ^5.0.0
|
|
6640
|
+
postcss-nesting: ^10.2.0
|
|
6641
|
+
postcss-preset-env: ^7.8.3
|
|
6642
|
+
postcss-url: ^10.1.3
|
|
6643
|
+
prettier: 2.8.8
|
|
6644
|
+
slugify: ^1.6.6
|
|
6645
|
+
sortablejs: ^1.15.6
|
|
6646
|
+
stimulus-use: ^0.52.3
|
|
6647
|
+
stylelint: ^15.11.0
|
|
6648
|
+
stylelint-config-standard: ^31.0.0
|
|
6649
|
+
stylelint-order: ^6.0.4
|
|
6650
|
+
tom-select: ^2.2.2
|
|
6651
|
+
vitepress: ^1.6.4
|
|
6652
|
+
vitepress-plugin-llms: ^1.13.1
|
|
6653
|
+
languageName: unknown
|
|
6654
|
+
linkType: soft
|
|
6655
|
+
|
|
6656
6656
|
"trim-lines@npm:^3.0.0":
|
|
6657
6657
|
version: 3.0.1
|
|
6658
6658
|
resolution: "trim-lines@npm:3.0.1"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trek
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mohamed Bengrich
|
|
@@ -951,10 +951,12 @@ files:
|
|
|
951
951
|
- trek.gemspec
|
|
952
952
|
- vendor/tom_select/css/tom-select.custom.css
|
|
953
953
|
- yarn.lock
|
|
954
|
-
homepage: https://etamin.studio
|
|
955
|
-
licenses:
|
|
954
|
+
homepage: https://trek.etamin.studio
|
|
955
|
+
licenses:
|
|
956
|
+
- MIT
|
|
956
957
|
metadata:
|
|
957
|
-
homepage_uri: https://etamin.studio
|
|
958
|
+
homepage_uri: https://trek.etamin.studio
|
|
959
|
+
documentation_uri: https://trek.etamin.studio
|
|
958
960
|
rdoc_options: []
|
|
959
961
|
require_paths:
|
|
960
962
|
- lib
|
|
@@ -971,5 +973,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
971
973
|
requirements: []
|
|
972
974
|
rubygems_version: 4.0.16
|
|
973
975
|
specification_version: 4
|
|
974
|
-
summary: A modern
|
|
976
|
+
summary: A modern content management & back-office system for Ruby on Rails
|
|
975
977
|
test_files: []
|